-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "js-package-sample",
"version": "0.0.5",
"description": "Javascript Package Sample",
"main": "dist/js-package-sample.js",
"scripts": {
"test": "`npm bin`/mocha test",
"test-travis": "`npm bin`/istanbul cover `npm bin`/_mocha -- -R spec ./test/*",
"build": "`npm bin`/grunt",
"clean": "`npm bin`/grunt clean"
},
"keywords": [
"test"
],
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yupmin/js-package-sample.git"
},
"devDependencies": {
"chai": "*",
"coveralls": "*",
"grunt": "*",
"grunt-cli": "*",
"grunt-contrib-clean": "*",
"grunt-contrib-concat": "*",
"grunt-contrib-copy": "*",
"grunt-contrib-jshint": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-watch": "*",
"grunt-simple-mocha": "*",
"gulp": "*",
"gulp-concat": "*",
"gulp-header": "*",
"gulp-jshint": "*",
"gulp-mocha": "*",
"gulp-rimraf": "*",
"gulp-uglify": "*",
"istanbul": "*",
"jsdom": "*",
"mocha": "*",
"sinon": "*"
},
"dependencies": {
"jquery": "*"
}
}