-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 966 Bytes
/
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
{
"name": "wechat-open",
"version": "0.0.1",
"description": "微信 Open 平台 SDK",
"main": "index.js",
"scripts": {
"lint": "eslint lib",
"test": "nyc ava",
"report": "nyc ava && nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"wechat",
"open",
"sdk",
"es6"
],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-preset-es2015-node": "^6.1.0",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "^2.11.11",
"eslint": "^3.1.0",
"eslint-config-airbnb-base": "^4.0.2",
"eslint-plugin-import": "^1.11.0",
"fetch-mock": "^5.0.1",
"nyc": "^7.0.0",
"sinon": "^1.17.4"
},
"ava": {
"babel": "inherit",
"require": [
"babel-core/register"
]
}
}