-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 KB
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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "cbml",
"version": "0.2.12",
"description": "CBML Parser",
"homepage": "https://github.com/cbml/cbmljs",
"author": {
"name": "zswang",
"url": "http://weibo.com/zswang"
},
"repository": "https://github.com/cbml/cbmljs.git",
"license": "MIT",
"main": "cbml.js",
"files": [
"cbml.js",
"cli.js"
],
"keywords": [
"cbml",
"parser",
"code",
"block"
],
"dependencies": {
"mkdirp": "^0.5.0",
"colors": "^1.0.3",
"optimist": "^0.6.1"
},
"devDependencies": {
"mocha": "^2.0.1",
"istanbul": "^0.3.17",
"should": "^4.1.0",
"uglify-js": "^2.4.15",
"jdists": "^1.3.1",
"jshint": "^2.5.8",
"jstrs": "^0.0.1"
},
"scripts": {
"_update_version": "jdists version.jdists",
"_dist": "jdists src/cbml.js -o cbml.js -r debug,test,remove,safe",
"_compress": "uglifyjs cbml.js -o cbml.min.js -p 5 -c -m",
"example": "jdists example.jdists.js -o test/example.js -t example",
"test": "istanbul cover --hook-run-in-context node_modules/mocha/bin/_mocha -- -R spec",
"mocha": "npm run example && mocha",
"dist": "npm run _update_version && npm run example && npm run _dist && npm run _compress && npm run test",
"lint": "jshint src/*.js *.json"
},
"bin": {
"cbml": "cli.js"
}
}