-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 869 Bytes
/
package.json
File metadata and controls
36 lines (36 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
{
"name": "enumer8",
"version": "2.0.0",
"description": "A simple enumeration library for Node.js",
"author": {
"name": "Andrew Wiggin",
"email": "azwiggin@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/azwiggin/enumer8.git"
},
"bugs": {
"url": "https://github.com/azwiggin/enumer8/issues"
},
"homepage": "https://github.com/azwiggin/enumer8#readme",
"main": "lib/Enumer8.js",
"scripts": {
"build": "./.bin/build",
"test": "./.bin/test"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"chai": "^4.2.0",
"debug": "^4.1.1",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
}
}