-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.77 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.77 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
{
"name": "@0devs/config-from-json",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf package coverage .nyc_output npm-debug.log",
"build": "./node_modules/.bin/babel src --out-dir ./package --presets es2015",
"build:for-test": "npm run build -- --plugins istanbul",
"build:package-json": "node ./scripts/copyPackageJson",
"dev": "npm run build -- --watch --plugins istanbul",
"test": "npm run build:for-test && ./node_modules/.bin/tap test/unit -J --coverage",
"test:fast": "./node_modules/.bin/tap test/unit -J",
"test:cov": "npm test -- --coverage-report=html",
"postversion": "git push origin && git push --tags",
"prepublish": "in-publish && echo 'use \"npm run _publish\"' && exit 1 || not-in-publish",
"_publish": "npm run clean && npm run build && npm run build:package-json && cd ./package && npm publish",
"pu": "npm run _publish"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0devs/node-config-from-json.git"
},
"keywords": [],
"author": "alekzonder <alekzonder@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/0devs/node-config-from-json/issues"
},
"homepage": "https://github.com/0devs/node-config-from-json#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^2.13.1",
"eslint": "^4.7.2",
"in-publish": "^2.0.0",
"log4js-nested": "^1.0.1",
"@0devs/config": "0.x",
"proxyquire": "^1.8.0",
"tap": "^10.7.2"
},
"dependencies": {
"@0devs/error": "^0.4.0"
},
"nyc": {
"all": true,
"include": [
"src/methods/*.js",
"src/*.js"
]
}
}