-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.97 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "claypot",
"description": "Claypot is an efficient, scalable server framework for Node.js",
"version": "0.3.2",
"main": "lib/index",
"bin": {
"claypot": "bin/claypot"
},
"files": [
"LICENSE.md",
"README.md",
"bin",
"assets",
"lib"
],
"scripts": {
"start": "yarn test --watchAll",
"prebuild": "rimraf lib",
"build": "babel src -d lib",
"cli": "cross-env CLAYPOT_DEV=true babel-node src/cli",
"format": "prettier-eslint --write \"+(src|test)/**/*.js\"",
"docs": "run-s docs:*",
"docs:build": "gitbook build ./docs",
"docs:deploy": "git-directory-deploy --directory ./docs/_book",
"preversion": "yarn test && yarn build",
"test": "cross-env CLAYPOT_DEV=true jest --runInBand",
"watch:build": "yarn build -w",
"watch:docs": "gitbook serve ./docs"
},
"author": "Cap32",
"license": "MIT",
"repository": "cantonjs/claypot.git",
"engines": {
"node": ">= 7.6.0"
},
"dependencies": {
"cache-manager": "^2.4.0",
"chalk": "^2.1.0",
"connect-history-api-fallback": "^1.6.0",
"find-port-sync": "^1.1.0",
"gradient-string": "^0.1.1",
"http-ask": "^0.0.0-rc1",
"http-proxy": "^1.12.0",
"import-file": "^1.4.0",
"koa": "^2.2.0",
"koa-compress": "^3.0.0",
"koa-error": "^3.0.0",
"koa-favicon": "^2.0.0",
"koa-helmet": "^4.0.0",
"koa-mount": "^3.0.0",
"koa-rewrite": "^3.0.1",
"koa-send": "^5.0.0",
"koa-weixin-jssdk": "^2.0.0",
"lodash": "^4.17.15",
"ms": "^2.0.0",
"multimatch": "^3.0.0",
"output-host": "^3.1.1",
"pot-js": "0.0.0-beta.50",
"pot-logger": "^0.4.0",
"prop-types": "^15.5.10",
"qiniu": "^6.1.13",
"raw-body": "^2.2.0",
"skeeler": "^0.1.0",
"yargs": "^6.5.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-jest": "^21.2.0",
"babel-polyfill": "^6.13.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-0-without-async": "^1.0.0",
"babel-register": "^6.11.6",
"babel-register-cli": "^4.0.0",
"co-body": "^4.2.0",
"cross-env": "^4.0.0",
"delay": "^2.0.0",
"eslint": "^4.19.1",
"eslint-config-cantonjs": "^1.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-standard": "^3.1.0",
"get-port": "^3.1.0",
"git-directory-deploy": "^1.5.1",
"gitbook-cli": "^2.3.2",
"is-reachable": "^2.3.2",
"jest": "^21.2.1",
"kapok-js": "^0.10.1",
"mkdirp": "^0.5.1",
"node-fetch": "^1.7.1",
"npm-run-all": "^4.0.2",
"pify": "^3.0.0",
"prettier-eslint-cli": "^4.7.0",
"qs": "^6.3.0",
"rimraf": "^2.5.4"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"modulePathIgnorePatterns": [
"node_modules",
"lib"
]
}
}