-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "thingssdk-cli",
"version": "1.3.0",
"description": "Generator for JavaScript microcontroller projects",
"main": "bin/thingssdk.js",
"bin": {
"thingssdk": "./bin/thingssdk.js"
},
"scripts": {
"test": "mocha --recursive --timeout 5000 --exit",
"combine-coverage": "node ./scripts/coverage_combine",
"test:coverage": "rimraf coverage && istanbul cover --report=none --print=none --include-pid node_modules/mocha/bin/_mocha -- --recursive --timeout 5000 --exit && npm run combine-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thingsSDK/thingssdk-cli.git"
},
"keywords": [
"JavaScript",
"IoT",
"ESP8266",
"Espruino"
],
"author": "Andrew Chalkley <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thingsSDK/thingssdk-cli/issues"
},
"homepage": "https://github.com/thingsSDK/thingssdk-cli#readme",
"dependencies": {
"colors": "^1.2.1",
"inquirer": "^5.2.0",
"mkdirp": "^0.5.1",
"serialport": "^6.1.1",
"yargs": "11.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^5.0.5",
"proxyquire": "^2.0.1",
"rimraf": "^2.6.2",
"suppose": "^0.6.2"
}
}