-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 838 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "ktl",
"version": "0.7.0",
"description": "Koder's Template Language",
"main": "ktl.js",
"scripts": {
"test": "node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"author": "Mariusz Chwalba <koder@cashbill.pl>",
"license": "ISC",
"devDependencies": {
"coveralls": "*",
"istanbul": "*",
"mocha": "*",
"should": "*",
"should-sinon": "*",
"sinon": "*"
},
"directories": {
"test": "test"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/lekoder/ktl.git"
},
"keywords": [
"template",
"parser"
],
"bugs": {
"url": "https://github.com/lekoder/ktl/issues"
},
"homepage": "http://lekoder.github.io/ktl/"
}