forked from EugenWiens/vscode-bitbake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.41 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
{
"name": "bitbake",
"description": "BitBake language support",
"author": "Eugen Wiens",
"license": "MIT",
"version": "1.1.2",
"publisher": "EugenWiens",
"bugs": {
"url": "https://github.com/EugenWiens/vscode-bitbake/issues"
},
"homepage": "https://github.com/EugenWiens/vscode-bitbake",
"repository": {
"type": "git",
"url": "https://github.com/EugenWiens/vscode-bitbake.git"
},
"scripts": {
"postinstall": "cd server && npm install && cd ../client && npm install && cd .. && npm run-script compile",
"compile": "npm run-script compile:client && npm run-script compile:server",
"compile:client": "tsc -p client/tsconfig.json",
"watch:client": "tsc -w -p client/tsconfig.json",
"compile:server": "cd server && npm run installServer && cd .. && tsc -p server/tsconfig.json",
"watch:server": "cd server && npm run installServer && cd .. && tsc -w -p server/tsconfig.json",
"distclean:server": "cd server && rm -fr node_modules && cd ..",
"distclean:client": "cd client && rm -fr node_modules && cd ..",
"distclean": "npm run-script distclean:server && npm run-script distclean:client && rm -fr node_modules",
"upgrade:client": "cd client && npm upgrade",
"upgrade:server": "cd server && npm upgrade",
"upgrade": "npm run-script upgrade:client && npm run-script upgrade:server && npm upgrade"
},
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": "^6.14.4",
"typescript": "^2.9.2"
}
}