-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 KB
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
{
"name": "@csllc/cs1816",
"version": "2.1.1",
"description": "Package used to communicate with CS1816-type BLE Dongles",
"main": "index.js",
"files": [
"/lib"
],
"type": "module",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "npm run lint && npm run test-local && echo 'Done.'",
"test-local": "mocha test/hooks.js test/**/*.test.js",
"lint": "eslint . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look so good.'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csllc/CS1816.git"
},
"author": "Bill Glase (bglase@icloud.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/csllc/CS1816/issues"
},
"homepage": "https://github.com/csllc/CS1816#readme",
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.32.0",
"mocha": "^10.2.0",
"sinon": "^15.0.1",
"winston": "^3.8.2"
},
"mocha": {
"reporter": "spec",
"slow": "200",
"timeout": "2000",
"ui": "bdd"
}
}