-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "enumit",
"version": "0.4.0",
"author": "YuzuJS",
"description": "An enum type for JS!",
"main": "./lib/Enum.js",
"dependencies": {
},
"devDependencies": {
"babel": "^5.6.14",
"chai": "< 3.0.0",
"chai-as-promised": "^4.1.1",
"jshint": ">= 2.8.0",
"mocha": ">= 2.2.5",
"sinon": ">= 1.3.4",
"sinon-chai": ">= 2.1.0"
},
"scripts": {
"prepublish": "npm run lint && npm test && npm run build",
"build": "babel src --out-dir lib",
"lint": "jshint src test",
"test": "mocha test --recursive",
"githooks": "cp pre-* ./.git/hooks"
},
"author": {
"name": "YuzuJS"
},
"author": "Paul Bouzakis <[email protected]>",
"contributors": [
{
"name": "Donavon West",
"email": "[email protected]",
"url": "http://donavon.com"
},
{
"name": "Paul Bouzakis",
"email": "[email protected]",
"url": "http://paulbouzakis.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/YuzuJS/enumit.git"
},
"repository": {
"type": "git",
"url": "git://github.com/YuzuJS/enumit.git"
},
"bugs": {
"url": "https://github.com/YuzuJS/enumit/issues"
},
"homepage": "https://github.com/YuzuJS/enumit"
}