-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 837 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 837 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
{
"name": "config-parser",
"version": "0.1.0",
"description": "Parses configs from the environment.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amhester/node-config-parser.git"
},
"keywords": [
"node",
"config",
"configuration",
"javascript"
],
"author": "amhester@anderson.edu",
"license": "ISC",
"bugs": {
"url": "https://github.com/amhester/node-config-parser/issues"
},
"homepage": "https://github.com/amhester/node-config-parser#readme",
"devDependencies": {
"jest": "^23.6.0",
"babel-eslint": "^8.2.6",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^7.7.0"
}
}