-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.1 KB
/
package.json
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
37
38
39
{
"name": "string-templ",
"version": "0.0.2",
"description": "A reverse version of dojo string substitution and some related string manipulation functions",
"main": "src/index.js",
"scripts": {
"nsp": "npm shrinkwrap --dev && nsp check",
"mocha": "mocha",
"lint": "jshint src test",
"plato": "plato -r -d test_reports/plato -l .jshintrc src",
"remove-shrinkwrap": "shx rm -f ./npm-shrinkwrap.json",
"test": "npm run mocha && npm run lint && npm run plato && npm run nsp ; npm run remove-shrinkwrap"
},
"bin": {
"string-templ": "./bin/string-templ.js"
},
"repository": {
"type": "git",
"url": "https://github.com/gratex/string-templ.git"
},
"author": "tonthanhhung<tonthanhhung90@gmail.com>",
"bugs": {
"url": "https://github.com/gratex/string-templ.git/issues"
},
"devDependencies": {
"jscoverage": "^0.5.9",
"jshint": "^2.5.11",
"mocha": "~2.1.0",
"mochawesome": "^1.5.3",
"nsp": "~2.6.0",
"plato": "^1.3.0",
"shx": "~0.2.0"
},
"dependencies": {
"byline": "^5.0.0",
"commander": "^2.9.0",
"curry": "~1.2.0"
}
}