-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 897 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 897 Bytes
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
{
"name": "wechat-open-oauth",
"version": "0.0.1",
"description": "微信 Open 平台代发起网页授权",
"main": "index.js",
"scripts": {
"test": "nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"wechat",
"open",
"oauth"
],
"author": "sic.hcq@gmail.com",
"license": "ISC",
"devDependencies": {
"ava": "^0.15.2",
"babel-eslint": "^6.1.2",
"babel-preset-es2015-node": "^6.1.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"coveralls": "^2.11.11",
"eslint": "^3.1.1",
"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-register"
]
},
"dependencies": {
"isomorphic-fetch": "^2.2.1"
}
}