-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.61 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
{
"name": "@openhps/protobuf",
"version": "1.0.2",
"description": "OpenHPS Protocol Buffer Generator",
"main": "dist/cjs/bin/generator.js",
"bin": {
"openhps-protobuf": "./dist/cjs/bin/generator.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"benchmark:1": "ts-node test/bench/serialization.bench.ts",
"benchmark:2": "ts-node test/bench/socket.bench.ts",
"benchmark:3": "ts-node test/bench/mqtt.bench.ts",
"start": "node dist/cjs/bin/generator.js",
"start:debug": "ts-node src/bin/generator.ts",
"test": "mocha --config test/.mocharc.json",
"cover": "nyc mocha --config test/.mocharc.json && nyc report --reporter=cobertura",
"cover:ci": "nyc mocha --config test/.mocharc.json --reporter mocha-junit-reporter && nyc report --reporter=cobertura",
"lint": "eslint src/**",
"clean": "shx rm -rf ./dist && shx rm -rf ./docs/out",
"build": "npm run clean && npm-run-all --parallel build:ts:* && npm run build:webpack",
"build:quick": "npm-run-all --parallel build:ts:* && npm run build:webpack",
"build:typedoc": "typedoc --options docs/typedoc.json",
"build:ts:cjs": "tsc --build ./tsconfig/tsconfig.bundle.cjs.json",
"build:ts:esm": "tsc --build ./tsconfig/tsconfig.bundle.esm.json",
"build:ts:esm5": "tsc --build ./tsconfig/tsconfig.bundle.esm5.json",
"build:ts:types": "tsc --build ./tsconfig/tsconfig.bundle.types.json",
"build:webpack": "npm-run-all --parallel build:webpack:*",
"build:webpack:prod": "webpack --env prod --",
"build:webpack:dev": "webpack --env dev --",
"publish:development": "npm run bump:beta && npm publish --tag dev",
"publish:beta": "npm run bump:beta && npm publish --tag beta",
"publish:release": "npm run bump:beta && npm publish --tag latest",
"bump:development": "standard-version --prerelease alpha -m 'chore(alpha): %s' --author='ci <[email protected]>'",
"bump:beta": "standard-version --prerelease beta -m 'chore(beta): %s' --author='ci <[email protected]>'",
"bump:release": "standard-version -m 'chore(release): %s' --author='ci <[email protected]>'"
},
"files": [
"dist/**/*",
"src/**/*",
"LICENSE"
],
"author": "Maxim Van de Wynckel",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@openhps/core": "^0.7.2",
"@openhps/mqtt": "^0.1.9",
"@openhps/rdf": "^0.4.64",
"@openhps/rf": "^0.1.62",
"@openhps/socket": "^0.1.8",
"@types/benchmark": "^2.1.5",
"@types/chai": "^4.3.16",
"@types/fs-extra": "^11.0.4",
"@types/long": "^5.0.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": ">=7.13.0",
"@typescript-eslint/parser": ">=7.13.0",
"benchmark": "^2.1.4",
"buffer": "^6.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.3",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"mocha": "^10.4.0",
"mocha-junit-reporter": "^2.2.1",
"npm-run-all": "^4.1.5",
"nyc": "^17.0.0",
"prettier": "^3.3.2",
"reflect-metadata": ">=0.2.2",
"shx": "^0.3.4",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typedoc": ">=0.25.13",
"typescript": "^5.4.5",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4",
"wkt": "^0.1.1"
},
"dependencies": {
"@inquirer/prompts": "^5.0.5",
"chai": "^4",
"chalk": "4.x",
"fs-extra": "^11.2.0",
"long": "^5.2.3",
"protobufjs": "^7.3.2",
"yargs": "^17.7.2"
}
}