-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 869 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 869 Bytes
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
{
"name": "enums",
"version": "1.0.2",
"description": "Compatible for java Enum",
"main": "index.js",
"scripts": {
"test": "mocha -R spec test/*.test.js",
"test-cov": "istanbul cover _mocha -- -R spec test/*.test.js",
"lint": "jshint .",
"ci": "npm run lint && npm run test-cov"
},
"files": [
"index.js"
],
"dependencies": {},
"devDependencies": {
"jshint": "*",
"mocha": "*",
"istanbul": "^0.4.2"
},
"homepage": "https://github.com/node-modules/enums",
"repository": {
"type": "git",
"url": "git://github.com/node-modules/enums.git"
},
"bugs": {
"url": "https://github.com/node-modules/enums/issues",
"email": "tangyao@taobao.com"
},
"keywords": [
"enums",
"java"
],
"engines": {
"node": ">= 0.12.0"
},
"ci": {
"versions": "0.12, 6, 7"
},
"license": "MIT"
}