-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.03 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
{
"name": "koa-weixin-jssdk",
"description": "Koa weixin jssdk middleware",
"version": "2.0.1",
"main": "lib/index.js",
"files": [
"lib",
"*.md"
],
"scripts": {
"start": "jest --watchAll",
"test": "jest",
"coverage": "jest --coverage",
"example": "nodemon example -w src -w example",
"prebuild": "rimraf lib && mkdir lib",
"build": "babel src -d lib",
"preversion": "npm test && npm run build"
},
"keywords": [
"weixin",
"wechat",
"koa",
"jssdk"
],
"repository": "git@github.com:die-welle/koa-weixin-jssdk.git",
"bugs": {
"url": "https://github.com/die-welle/koa-weixin-jssdk/issues"
},
"homepage": "https://github.com/die-welle/koa-weixin-jssdk#readme",
"maintainers": [
{
"name": "Cap32",
"email": "webb.png@gmail.com"
},
{
"name": "JC"
}
],
"licenses": "MIT",
"engines": {
"node": ">= 7.6.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-0-without-async": "^1.0.0",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"find-port-sync": "^1.0.0",
"jest": "^19.0.2",
"koa": "^2.2.0",
"koa-router": "^7.1.1",
"mkdirp": "^0.5.1",
"nodemon": "^1.8.1",
"output-host": "^1.1.0",
"rimraf": "^2.5.2"
},
"dependencies": {
"invariant": "^2.2.0",
"jssha": "^2.0.2",
"node-fetch": "^1.3.3"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"modulePathIgnorePatterns": [
"node_modules",
"lib"
]
}
}