-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.27 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "canarium",
"version": "1.2.1",
"description": "PERIDOT board driver library",
"main": "out/src/index.js",
"types": "types/src/index.d.ts",
"scripts": {
"clean": "rimraf out types",
"precompile": "cd test && typings i",
"compile": "tsc -p ./",
"pretest": "npm run compile",
"test": "npm-run-all test.*",
"test.gen2": "node node_modules/mocha/bin/_mocha -- out/test/gen2/*.test.js",
"test.gen1": "node node_modules/mocha/bin/_mocha -- out/test/gen1/*.test.js",
"lint": "tslint -p ./",
"prepublishOnly": "npm-run-all clean compile lint",
"pretest:coverage": "npm run pretest",
"test:coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --no-timeouts out/test/*.test.js",
"posttest:coverage": "remap-istanbul -i coverage/coverage.json -o coverage/html-report -t html",
"docs": "typedoc --mode file --out docs/gen2 --module commojs --target es5 --excludePrivate --excludeNotExported src/gen2/canarium.ts"
},
"files": [
"out/src/**/*.js",
"types/src/**/*.d.ts",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kimushu/canarium.git"
},
"dependencies": {
"bson": "^1.0.4",
"debug": "^2.6.9",
"promise.prototype.finally": "^3.0.1"
},
"peerDependencies": {
"serialport": "^6.0.0"
},
"keywords": [
"PERIDOT",
"canarium"
],
"author": "kimu_shu",
"license": "MIT",
"bugs": {
"url": "https://github.com/kimushu/canarium/issues"
},
"homepage": "https://github.com/kimushu/canarium#readme",
"devDependencies": {
"@types/bson": "^1.0.4",
"@types/chai-as-promised": "7.1.0",
"@types/node": "^8.0.45",
"@types/promise.prototype.finally": "^2.0.2",
"@types/semver": "^5.4.0",
"@types/serialport": "^4.0.11",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coffee-script": "^1.12.4",
"elfy": "^0.1.0",
"fs-extra": "^4.0.2",
"inquirer": "^3.0.1",
"istanbul": "^0.4.5",
"jsonfilter": "^1.1.2",
"mocha": "^4.0.1",
"mocha-multi": "^0.11.1",
"mocha-steps": "^1.0.2",
"npm-run-all": "^4.0.2",
"remap-istanbul": "^0.9.5",
"rimraf": "^2.6.1",
"serialport": "^6.0.0",
"tslint": "^5.2.0",
"typedoc": "^0.9.0",
"typescript": "^2.3.2",
"typings": "^2.1.1"
}
}