-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 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
{
"name": "obd-utils",
"version": "0.2.1",
"description": "Provides utilities for OBD2",
"author": "Nishkal <[email protected]>",
"repository": "https://github.com/Nishkalkashyap/obd-utils",
"homepage": "https://github.com/Nishkalkashyap/obd-utils",
"bugs": {
"url": "https://github.com/Nishkalkashyap/obd-utils/issues"
},
"main": "./lib/umd/index.js",
"keywords": [
"OBD",
"OBD2",
"obd-utils",
"obd-parser",
"elm327",
"elm",
"javascript obd",
"node obd",
"nodejs obd"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-cli": "tsc --project ./tsconfig.scripts.json --module commonjs --outDir bin",
"build-umd": "tsc --module umd --outDir lib/umd",
"build-cjs": "tsc --module commonjs --outDir lib/cjs",
"build-es6": "tsc --module ES6 --outDir lib/es6",
"build-all": "npm run build-umd && npm run build-cjs && npm run build-es6",
"update-readme": "npx ts-node ./scripts/generate-pid-readme.ts",
"prepublishOnly": "npm run update-readme && npm run build-all && npm run build-cli"
},
"bin": "./bin/scripts/cli.js",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^16.4.13",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"commander": "^8.1.0"
},
"types": "./lib/umd/index.d.ts"
}