-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.39 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "examplejs",
"version": "0.1.18",
"description": "A tool for converting example code into test cases",
"main": "examplejs.js",
"keywords": [
"example",
"test",
"cases"
],
"scripts": {
"_update_version": "node version.js",
"_dist": "gulp",
"example": "node cli README.md -o test/readme.js -h head.js -g \"$,document\" -t 30000 && node cli src/examplejs.js -o test/examplejs.js -h head.js",
"test": "istanbul cover --hook-run-in-context node_modules/mocha/bin/_mocha -- -R spec",
"mocha": "mocha",
"dist": "npm run _update_version && npm run example && npm run _dist && npm run test",
"lint": "jshint src/*.js *.json"
},
"homepage": "https://github.com/zswang/examplejs",
"author": {
"name": "zswang",
"url": "http://weibo.com/zswang"
},
"repository": "https://github.com/zswang/examplejs.git",
"license": "MIT",
"dependencies": {
"glob": "^7.0.3",
"mkdirp": "^0.5.0",
"colors": "^1.0.3",
"optimist": "^0.6.1"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-jdists": "^0.0.5",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.3",
"gulp-replace": "^0.5.4",
"jsdom": "^9.1.0",
"mocha": "^2.0.1",
"istanbul": "^0.3.17",
"should": "^4.1.0",
"jshint": "^2.5.8",
"jstrs": "^0.0.37"
},
"bin": {
"examplejs": "cli.js"
},
"files": [
"examplejs.js",
"cli.js"
]
}