-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2 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
{
"name": "claypot-wxjssdk-plugin",
"description": "claypot plugin for qiniu",
"version": "0.1.0",
"main": "lib/index",
"files": [
"*.md",
"lib"
],
"scripts": {
"start": "yarn test --watchAll",
"test": "cross-env NODE_ENV=development jest",
"prettier": "prettier-eslint --write \"+(src|test)/**/*.js\"",
"prebuild": "rimraf lib",
"build": "babel src -d lib",
"preversion": "yarn test && yarn build"
},
"author": "JC",
"repository": "cantonjs/claypot-wxjssdk-plugin",
"engines": {
"node": ">=7.6"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"invariant": "^2.2.4",
"jssha": "^2.3.1",
"node-fetch": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.13.2",
"babel-eslint": "^8.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-es2015-destructuring": "^6.19.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-es2015-parameters": "^6.18.0",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-polyfill": "^6.13.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-0-without-async": "^1.0.0",
"babel-register": "^6.11.6",
"claypot": "^0.1.1",
"claypot-restful-plugin": "^0.0.1",
"cross-env": "^4.0.0",
"eslint": "^4.19.1",
"eslint-config-cantonjs": "^0.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-standard": "^3.1.0",
"find-port-sync": "^1.1.1",
"jest": "^20.0.4",
"koa": "^2.5.1",
"prettier-eslint-cli": "^4.7.0",
"rimraf": "^2.5.4"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"modulePathIgnorePatterns": [
"node_modules",
"lib"
]
},
"peerDependencies": {
"claypot": "^0.0.0",
"claypot-restful-plugin": "^0.0.1"
}
}