-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
62
63
64
65
{
"name": "centig",
"version": "1.1.3",
"description": "The Configuration Management library for your JavaScript application",
"main": "lib/index.js",
"types": "lib/centig.d.ts",
"scripts": {
"dev": "nodemon --watch src/**/*.ts --ignore src/**/*.test.ts --exec ts-node src/dev.ts",
"build": "tsc",
"test": "jest --watch --config jest.config.js",
"pipeline:ci": "npm run lint && npm run coverage && npm run build",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push origin master && git push --tags",
"coverage": "jest --config jest.config.js --verbose --coverage",
"coverage:upload": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alexloof/centig.git"
},
"engines": {
"node": ">=6"
},
"keywords": [
"config",
"nodejs",
"configuration",
"validation",
"environment variables",
"javascript",
"js",
"env",
"simple",
"custom"
],
"author": "alexloof",
"license": "MIT",
"bugs": {
"url": "https://github.com/Alexloof/centig/issues"
},
"homepage": "https://github.com/Alexloof/centig#readme",
"devDependencies": {
"@types/jest": "^24.0.20",
"@types/lodash.clonedeep": "^4.5.6",
"@types/node": "^12.11.7",
"codecov": "^3.6.1",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.4"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
},
"files": [
"lib/**/*"
]
}