-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.71 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "kissy-json",
"version": "1.0.4",
"author": "yiminghe <[email protected]>",
"engines": {
"node": "~0.10"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/kissyteam/json.git"
},
"testling": {
"server": "server.js",
"html": "tests/runner.html",
"browsers": [
"ie/6..latest",
"chrome/latest",
"firefox/latest",
"safari/latest",
"iphone/6..lastest",
"ipad/6..latest",
"android-browser/latest"
]
},
"devDependencies": {
"body-parser": "^1.6.5",
"chai": "^1.9.1",
"express": "^4.8.5",
"gulp": "^3.8.7",
"gulp-clean": "^0.3.1",
"gulp-filter": "^1.0.0",
"gulp-footer": "^1.0.5",
"gulp-header": "^1.0.5",
"gulp-jscs": "^1.1.0",
"gulp-jshint": "^1.8.4",
"gulp-kclean": "^0.0.13",
"gulp-modulex": "^1.0.0",
"gulp-rename": "^1.2.0",
"gulp-replace": "^0.4.0",
"gulp-uglify": "^0.3.1",
"gulp-util": "^3.0.0",
"gulp-wrapper": "^0.1.5",
"jshint": "^2.5.5",
"jshint-stylish": "^0.4.0",
"kison": "^0.3.6",
"mocha": "^1.21.4",
"node-jscover": "^0.6.8",
"node-jscover-coveralls": "^1.0.10",
"node-jscover-handler": "^1.0.3",
"precommit-hook": "^1.0.7",
"serve-index": "^1.1.6",
"serve-static": "^1.5.3"
},
"precommit": [
"lint"
],
"scripts": {
"publish": "gulp tag",
"lint": "gulp lint",
"browser-test": "mocha-phantomjs http://localhost:8008/tests/runner.html",
"browser-test-build": "mocha-phantomjs http://localhost:8008/tests/runner.html?build",
"browser-test-cover": "mocha-phantomjs -R node_modules/node-jscover/lib/reporters/mocha/console http://localhost:8008/tests/runner.html?coverage"
}
}