-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.01 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.01 KB
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
{
"name": "@0devs/config",
"version": "2.4.0",
"description": "extendable config",
"main": "lib/Config.js",
"types": "lib/Config.d.ts",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"clean": "rm -rf lib coverage npm-debug.log",
"build": "tsc",
"lint": "eslint --ext .js,.ts ./src ./spec",
"ts": "tsc --watch",
"postversion": "git push origin && git push --tags",
"prepublish": "npm run clean && npm run build",
"ci": "npm run lint && npm run test:coverage",
"---build:for-test": "npm run build -- --plugins istanbul",
"---build:package-json": "node ./scripts/copyPackageJson",
"---dev": "npm run build -- --watch --plugins istanbul",
"---test:fast": "./node_modules/.bin/tap test/unit -J",
"---test:cov": "npm test -- --coverage-report=html",
"---publish": "npm run clean && npm run build && npm run build:package-json && cd ./package && npm publish",
"---pu": "npm run _publish"
},
"engines": {
"node": ">=7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0devs/node-config.git"
},
"keywords": [],
"author": "alekzonder <alekzonder@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/0devs/node-config/issues"
},
"homepage": "https://github.com/0devs/node-config#readme",
"devDependencies": {
"@0devs/package": "^0.18.1",
"@types/jest": "^25.2.1",
"@types/lodash.get": "^4.4.6",
"@types/lodash.set": "^4.3.6",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^25.3.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@0devs/error": "^1.2.0",
"deepmerge": "^3.2.0",
"lodash.get": "4.4.x",
"lodash.set": "4.3.x"
}
}