-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.48 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
58
59
60
61
{
"name": "@wrseward/config",
"description": "Simple application configuration for JavaScript",
"version": "0.1.1",
"author": "William Seward <wrseward@gmail.com>",
"bugs": {
"url": "https://github.com/wrseward/node-config/issues"
},
"dependencies": {
"dot-prop": "^4.2.0",
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
"@types/dot-prop": "^4.2.0",
"@types/jest": "^23.1.1",
"@types/lodash.clonedeep": "^4.5.3",
"husky": "^1.0.0-rc.9",
"jest": "^22.4.4",
"lint-staged": "^7.2.0",
"prettier": "^1.13.5",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.9.2"
},
"homepage": "https://github.com/wrseward/node-config#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"config",
"config-node",
"configuration",
"node-config"
],
"license": "MIT",
"lint-staged": {
"*.ts": [
"tslint -c tslint.json --fix",
"git add"
]
},
"main": "./dist/config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wrseward/node-config.git"
},
"scripts": {
"build": "tsc --declaration",
"fixpack": "fixpack",
"lint": "tslint -c tslint.json '{lib,__tests__}/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watchAll"
},
"types": "./dist/config.d.ts"
}