-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "json4json",
"version": "1.1.0",
"description": "Json template for json.",
"keywords": [
"json",
"template",
"transform"
],
"main": "index.js",
"files": [
"index.js",
"src"
],
"scripts": {
"lint": "eslint src test index.js",
"build": "webpack --config build/build.js",
"test": "npm run lint && nyc mocha --require intelli-espower-loader",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"bug": {
"url": "https://github.com/baffinlee/json4json/issues"
},
"homepage": "https://github.com/baffinlee/json4json",
"repository": {
"type": "git",
"url": "[email protected]:baffinlee/json4json.git"
},
"author": "Baffin Lee <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"codecov": "^3.0.4",
"eslint": "^5.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"power-assert": "^1.6.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"engines": {
"node": ">= 8"
}
}