-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.3 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
54
55
56
57
{
"name": "diamorphosis",
"version": "1.1.0",
"description": "",
"contributors": [
{
"name": "Nikolaos Kostoulas",
"email": "[email protected]"
},
{
"name": "Panos Matzavinos",
"email": "[email protected]"
}
],
"keywords": [
"config",
"json",
"env",
"env2conf",
"NODE_ENV",
"twelve factor"
],
"license": "MIT",
"types": "./types/diamorphosis.d.ts",
"dependencies": {
"deep-extend": "^0.6.0",
"dotenv": "^2.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-workable-node": "git://github.com/Workable/eslint-config-workable-node.git#v1.0.0",
"husky": "^0.13.4",
"istanbul": "^0.4.5",
"lint-staged": "^4.0.0",
"mocha": "^10.2.0",
"prettier": "^1.19.1",
"should": "^13.2.3"
},
"engines": {
"node": ">=6.0.0"
},
"main": "lib/main.js",
"scripts": {
"precommit": "lint-staged",
"pretest": "eslint .",
"prepublishOnly": "npm test",
"test": "mocha --require should --reporter spec",
"test-cov": "node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should"
},
"lint-staged": {
"*.js": [
"prettier --print-width 120 --single-quote true --write",
"git add"
]
},
"repository": "Workable/diamorphosis"
}