-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.49 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
{
"name": "@westh/umxxc-parser",
"version": "1.0.4",
"description": "Parse messages from UMxxC devices, e.g. the UM34C",
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/westh/umxxc-parser.git"
},
"keywords": [
"parse",
"parser",
"um",
"um24c",
"um25c",
"um34c",
"uuuuuummmm",
"🌿",
"you shall not parse"
],
"author": "westh",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/westh/umxxc-parser/issues"
},
"homepage": "https://github.com/westh/umxxc-parser#readme",
"scripts": {
"build": "babel index.js -d lib/cjs && cp index.js lib/mjs",
"test": "yarn build && node test.mjs && node test.cjs",
"lint": "eslint --fix .",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.js": [
"yarn lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"binary-parser": "^1.7.0"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^7.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.5",
"lint-staged": "^10.5.3"
}
}