This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
generated from boneskull/boneskull-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 2.85 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "es51922",
"version": "0.1.1",
"description": "Streaming Cyrustek ES51922 DMM data protocol implementation over serial",
"keywords": [
"ac",
"current",
"cyrustek",
"data-logger",
"dc",
"es51922",
"kaitai",
"multimeter",
"observable",
"resistance",
"rxjs",
"serial",
"serialport",
"signal-analyzer",
"stream",
"ut61e",
"voltage"
],
"repository": {
"type": "git",
"url": "https://github.com/boneskull/es51922"
},
"license": "Apache-2.0",
"author": "Christopher Hiller <boneskull@boneskull.com> (https://boneskull.com/)",
"files": [
"dist",
"src",
"vendor"
],
"main": "dist/es51922.cjs.js",
"module": "dist/es51922.esm.js",
"scripts": {
"build": "rollup -c",
"clean": "git clean -fdx dist",
"compile-posix": "kaitai-struct-compiler ./src/es51922.ksy.yml -t javascript && mv Es51922.js ./vendor/es51922.js",
"dev": "rollup -c -w",
"prepublishOnly": "npm run clean && npm run build",
"release": "standard-version",
"test": "mocha \"test/**/*.spec.js\"",
"posttest": "markdownlint README.md && eslint ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{yml,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"bracketSpacing": false,
"endOfLine": "auto",
"singleQuote": true
},
"dependencies": {
"@serialport/parser-byte-length": "^2.0.2",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"kaitai-struct": "^0.8.0-SNAPSHOT.11",
"rxjs": "^6.5.2",
"rxjs-stream": "^3.0.2",
"serialport": "^7.1.5"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@serialport/binding-mock": "^2.0.5",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-semistandard": "^13.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"esm": "^3.2.25",
"husky": "^1.3.1",
"lint-staged": "^8.2.0",
"markdownlint-cli": "^0.14.1",
"mocha": "^6.1.4",
"prettier": "^1.18.2",
"rewiremock": "^3.13.7",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-subpath-externals": "^3.0.0",
"sinon": "^7.3.2",
"standard-version": "^6.0.1",
"unexpected": "^11.7.0",
"unexpected-rxjs": "^0.2.3",
"unexpected-sinon": "^10.11.2"
},
"engines": {
"node": ">=8"
},
"standard-version": {
"scripts": {
"postchangelog": "prettier --write CHANGELOG.md"
}
}
}