-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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": "@alicloud/ots2",
"version": "2.1.0",
"description": "OTS(2015-12-31) client for Node.js(ES6)",
"main": "./index",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint --fix lib/ test/",
"test": "mocha -R spec test/*.test.js",
"test-cov": "nyc -r=html -r=text -r=lcov mocha -t 3000 -R spec test/*.test.js",
"test-integration": "mocha -R spec test/*.integration.js",
"ci": "npm run lint && npm run test-cov && codecov"
},
"author": "Jackson Tian",
"license": "MIT",
"dependencies": {
"debug": "^2.2.0",
"httpx": "^2.0.0",
"kitx": "^1.1.0",
"protobufjs": "^5.0.0",
"pegjs": "^0.10.0"
},
"devDependencies": {
"codecov": "^3.5.0",
"eslint": "^6.2.2",
"expect.js": "^0.3.1",
"mocha": "^4.0.1",
"nyc": "^11.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ali-sdk/ots2.git"
},
"keywords": [
"OTS",
"OTS2",
"Aliyun"
],
"bugs": {
"url": "https://github.com/ali-sdk/ots2/issues"
},
"homepage": "https://github.com/ali-sdk/ots2#readme",
"files": [
"lib",
"spec",
"index.js"
]
}