-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "@kop/twelve-factor-config",
"version": "0.0.0",
"description": "An easy to use 12factor configuration for Node.js",
"homepage": "https://github.com/kop/node-twelve-factor-config",
"license": "MIT",
"keywords": [
"12factor",
"config",
"configuration",
"env",
"environment"
],
"author": "Ivan Koptiev <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/kop/node-twelve-factor-config.git"
},
"bugs": {
"url": "https://github.com/kop/node-twelve-factor-config/issues"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/index",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint --silent",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=4.2.0"
},
"dependencies": {},
"devDependencies": {
"eslint": "^3.4.0",
"eslint-plugin-react": "^6.2.0",
"eslint-plugin-import": "^1.14.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-jsx-a11y": "^2.2.0"
},
"eslintConfig": {
"extends": [
"airbnb"
],
"rules": {
"padded-blocks": 0,
"object-curly-spacing": 0
}
}
}