-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
82 lines (82 loc) · 3.25 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
{
"private": true,
"name": "thingweb.node-wot",
"description": "W3C Web of Things (WoT) implementation based on Node.js and TypeScript (root project, not published)",
"author": "Eclipse Thingweb <thingweb-dev@eclipse.org> (https://thingweb.io/)",
"license": "EPL-2.0 OR W3C-20150513",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-thingweb/node-wot.git"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"scripts": {
"build": "tsc -b && npm run build -w packages/browser-bundle",
"pretest": "npm run build",
"start": "cd packages/cli && npm run start",
"debug": "cd packages/cli && npm run debug",
"test": "npm run test --silent --workspaces --if-present",
"test:only": "npm run test --silent --workspaces --if-present",
"coverage": "c8 --reporter=lcov npm run test",
"coverage:only": "c8 --reporter=lcov npm run test:only",
"lint": "npm run lint --silent --workspaces --if-present",
"lint:fix": "npm run lint:fix --silent --workspaces --if-present",
"format": "prettier --write . && npm run format --silent --workspaces --if-present",
"format:quick": "pretty-quick",
"prepare": "husky install",
"publish": "npm publish --workspaces",
"check:versions": "node utils/check_package_version_consistency.js",
"build:docker": "docker build -t wot-servient .",
"build:podman": "podman build -t wot-servient .",
"clean:dist": "npm exec --workspaces -- npx rimraf tsconfig.tsbuildinfo dist",
"update:wot-typescript-definitions": "npx npm-check-updates -u -f \"wot-typescript-definitions\" --deep",
"link": "npm link -ws"
},
"workspaces": [
"./packages/td-tools",
"./packages/core",
"./packages/binding-!()",
"./packages/cli",
"./packages/examples",
"./packages/browser-bundle"
],
"devDependencies": {
"@testdeck/mocha": "^0.1.2",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/chai-spies": "^1.0.4",
"@types/mocha": "^9.0.0",
"@types/node": "16.18.35",
"@types/readable-stream": "^4.0.15",
"@types/sinon": "10.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"c8": "^7.11.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-workspaces": "^0.9.0",
"husky": "^7.0.4",
"mocha": "^9.2.2",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"sinon": "11.1.1",
"source-map-support": "^0.5.20",
"ts-node": "^10.9.1",
"tslint": "5.12.1",
"typescript": "4.7.4",
"typescript-standard": "^0.3.36",
"wot-typescript-definitions": "0.8.0-SNAPSHOT.29"
}
}