-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
72 lines (72 loc) · 1.58 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
66
67
68
69
70
71
72
{
"name": "rekit-core",
"version": "3.0.2",
"description": "Rekit core functions.",
"author": "Nate Wang <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/rekit/rekit-core",
"main": "index.js",
"keywords": [
"rekit",
"rekit-core",
"react",
"redux",
"react-router"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rekit/rekit-core"
},
"bugs": {
"url": "https://github.com/rekit/rekit-core/issues"
},
"scripts": {
"test": "node ./scripts/runTests.js",
"jsdoc:build": "jsdoc core -r -c .jsdoc.json --verbose",
"codecov": "codecov"
},
"nyc": {
"include": [
"core/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": false,
"sourceMap": false,
"instrument": true
},
"files": [
"core",
"plugins",
"index.js",
"package.json"
],
"dependencies": {
"@babel/generator": "^7.4.0",
"@babel/parser": "^7.4.3",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/traverse": "^7.4.3",
"@babel/types": "^7.4.0",
"chalk": "^2.4.2",
"chokidar": "^3.5.1",
"diff": "^4.0.1",
"download-git-repo": "^1.1.0",
"download-npm-package": "^3.1.12",
"fast-safe-stringify": "^2.0.6",
"fs-extra": "^7.0.1",
"lodash": "^4.17.11",
"minimatch": "^3.0.4",
"prettier": "^1.16.4",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.2.0",
"eslint": "^5.15.3",
"eslint-config-node": "^4.0.0",
"mocha": "^6.0.2",
"nyc": "^13.3.0"
}
}