forked from eclipse-thingweb/node-wot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.03 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
{
"private": true,
"description": "W3C Web of Things (WoT) implementation based on Node.js and TypeScript (root project, not published)",
"author": "Eclipse Thingweb <[email protected]> (https://thingweb.io/)",
"license": "EPL-2.0 OR W3C-20150513",
"repository": {
"type": "git",
"url": "https://github.com/eclipse/thingweb.node-wot.git"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"lerna": "^3.20.2",
"lerna-run": "0.0.2",
"rimraf": "3.0.2"
},
"dependencies": {},
"scripts": {
"bootstrap": "lerna bootstrap --no-ci",
"prebuild": "npm run bootstrap",
"build": "lerna run build",
"pretest": "npm run build",
"start": "cd packages/cli && npm run start",
"debug": "cd packages/cli && npm run debug",
"test": "lerna run test",
"prelink": "npm run unlock",
"link": "lerna-run npm link",
"codestyle": "lerna run codestyle",
"clean": "lerna clean",
"unlock": "lerna-run rimraf package-lock.json",
"publish": "lerna publish --force-publish=*"
}
}