-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1 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
{
"name": "wechat-token",
"version": "0.5.3",
"description": "An auto refresh wechat access token manager",
"main": "./token-manager",
"scripts": {
"test": "_mocha $npm_package_options_mocha tests/**/*.js",
"test-watch": "npm run test -- --watch",
"cov": "istanbul cover --report html _mocha -- tests/**/*.js",
"coveralls": "istanbul cover --report lcovonly _mocha -- tests/**/*.js && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"author": "feit",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:feit/wechat-token.git"
},
"dependencies": {
"request": "^2.69.0"
},
"devDependencies": {
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.0.0",
"nock": "^7.0.2",
"should": "^8.2.1",
"sinon": "^1.17.3"
},
"keywords": [
"access",
"token",
"access_token",
"weixin",
"wechat"
]
}