-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "underskore",
"version": "0.0.12",
"description": "[Underscore.js](http://underscorejs.org/) and a little more",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "jshint .",
"test": "mocha",
"coverage": "istanbul cover _mocha && open ./coverage/lcov-report/index.html",
"prepublish": "npm run lint && npm test && npm run coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/kunalgolani/underskore.git"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"keywords": [
"underscore",
"utility",
"javascript"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/kunalgolani/underskore/issues"
},
"homepage": "https://github.com/kunalgolani/underskore",
"dependencies": {
"underscore": "~1.8.2"
},
"devDependencies": {
"chai": "~3.5.0",
"coveralls": "~2.11.0",
"istanbul": "~0.4.0",
"jshint": "~2.9.0",
"mocha": "~2.4.0"
}
}