-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "enumerations",
"version": "1.1.0",
"description": "Type-Safe enums in JavaScript with custom properties and methods, immutability support, error checking, etc.",
"main": "lib/enum.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "npm run lint&npm run compile",
"lint": "eslint src/**/*.js test/**/*.js examples/**/*.js",
"compile": "babel src -d lib",
"docs": "jsdoc2md -f src/enum.js > docs/enum.md",
"test": "mocha --compilers js:babel-register --reporter spec test",
"test-cov": "nyc mocha test",
"test-ci": "npm run test-cov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alan-ghelardi/enumerations.git"
},
"keywords": [
"enum",
"enumeration",
"utility"
],
"author": "Alan Ghelardi <alan.ghelardi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alan-ghelardi/enumerations/issues"
},
"homepage": "https://github.com/alan-ghelardi/enumerations#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-node6": "^11.0.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"eslint": "^3.7.0",
"inquirer": "^1.2.1",
"jsdoc-to-markdown": "^2.0.0",
"mocha": "^3.1.0",
"nyc": "^8.3.0"
}
}