forked from Brooooooklyn/wechat-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "skyline-wechat-enterprise-sdk",
"version": "0.2.0",
"description": "Wechat cryptor service. base on wechat-enterprise-sdk 0.2.0",
"main": "index.js",
"devDependencies": {
"babel": "^5.8.20",
"chai": "^3.2.0"
},
"scripts": {
"compile": "babel --modules common -d lib/ src/",
"compile-test": "babel --modules common -d test/ spec/",
"build": "npm run clean && npm run compile && npm run compile-test",
"clean": "rm -rf lib test",
"test": "mocha test/*.test.js",
"watch-src": "babel src -w -d lib",
"watch-test": "babel spec -w -d test",
"watch": "npm run watch-src & npm run watch-test"
},
"directories": {
"test": "test"
},
"keywords": [
"wechat"
],
"author": {
"name": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jchbh-duplicate/wechat-api.git"
},
"bugs": {
"url": "https://github.com/jchbh-duplicate/wechat-api/issues"
},
"homepage": "https://github.com/jchbh-duplicate/wechat-api#readme",
"dependencies": {
"config": "^1.15.0",
"request": "^2.60.0",
"thenjs": "^2.0.0",
"xml2js": "^0.4.9"
},
"maintainers": [
{
"name": "waiter",
"email": "[email protected]"
}
]
}