-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "single-config",
"version": "2.0.1",
"description": "Builds a module from a single json configuration file using current NODE_ENV for selecting the matching leaf values",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"buildconfig": "./dist/src/bin.js"
},
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"buildconfig-demo": "npm run build && NODE_ENV=development node ./dist/src/bin.js --input=config-demo.json --output=config-demo.js",
"test": "jest",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"version-patch": "npm version patch -m \"bumped version to v%s\""
},
"files": [
"dist/src/**/*.js",
"dist/src/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/smnh/single-config.git"
},
"keywords": [
"configuration",
"config",
"single",
"json",
"build",
"node",
"react"
],
"author": {
"name": "Simon Hanukaev",
"url": "http://smnh.me"
},
"homepage": "https://github.com/smnh/single-config#readme",
"bugs": "https://github.com/smnh/single-config/issues",
"license": "MIT",
"dependencies": {
"argparse": "^1.0.10",
"lodash": "^4.17.21",
"object.fromentries": "^2.0.4"
},
"devDependencies": {
"@types/argparse": "^1.0.38",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.168",
"@types/node": "^15.0.1",
"@types/object.fromentries": "^2.0.0",
"coveralls": "^3.0.7",
"jest": "^24.9.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}