-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "kissy-logger-manager",
"version": "1.0.2",
"description": "manage and generate logger which can log different log info",
"author": "yiminghe <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/kissyteam/logger-manager"
},
"keywords": [
"log",
"logger",
"logger-manager"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kissyteam/logger-manager/issues"
},
"devDependencies": {
"chai": "^1.9.1",
"coveralls": "~2.10.0",
"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",
"istanbul": "~0.2.10",
"jshint": "^2.5.5",
"jshint-stylish": "^0.4.0",
"mocha": "^1.21.4",
"mocha-istanbul": "~0.2.0",
"precommit-hook": "~1.0.7"
},
"precommit": [
"lint"
],
"scripts": {
"lint": "gulp lint",
"publish": "gulp tag",
"test": "node ./node_modules/mocha/bin/mocha -R list tests/specs",
"cover": "node ./node_modules/istanbul/lib/cli cover ./node_modules/mocha/bin/_mocha -- -R list tests/specs/"
}
}