-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 787 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 787 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
{
"name": "linkedge-core-sdk-nodejs",
"version": "0.1.0",
"description": "Link IoT Edge core sdk for Node.js.",
"main": "index.js",
"directories": {
"example": "examples",
"lib": "lib"
},
"files": [
"lib",
"index.js"
],
"scripts": {
"test": "npm run test-unit",
"test-unit": "mocha --colors -t 30000 \"test/unit/**/*.test.js\"",
"cover-unit": "istanbul cover ./node_modules/mocha/bin/_mocha -- -t 30000 \"test/unit/**/*.test.js\""
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"Link",
"IoT",
"Edge"
],
"author": "Alibaba Group Holding Ltd.",
"license": "Apache-2.0",
"devDependencies": {
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"should": "^13.2.3",
"sinon": "^7.0.0"
}
}