forked from yoctoproject/vscode-bitbake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.82 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
{
"name": "yocto-bitbake",
"description": "Extended Yocto Project and BitBake language support",
"author": {
"name": "Savoir-faire Linux",
"email": "[email protected]",
"url": "https://www.savoirfairelinux.com/"
},
"contributors": [
"Eugen Wiens"
],
"license": "MIT",
"version": "2.0.0",
"publisher": "yocto-project",
"bugs": {
"url": "https://github.com/yoctoproject/vscode-bitbake/issues"
},
"homepage": "https://github.com/yoctoproject/vscode-bitbake",
"repository": {
"type": "git",
"url": "https://github.com/yoctoproject/vscode-bitbake.git"
},
"scripts": {
"postinstall": "cd server && npm install && cd ../client && npm install",
"fetch": "npm run fetch:poky && npm run fetch:docs",
"fetch:docs": "sh scripts/fetch-docs.sh",
"fetch:poky": "mkdir -p resources/poky && curl -L -o resources/poky.tar.bz2 https://downloads.yoctoproject.org/releases/yocto/yocto-4.2.3/poky-aa63b25cbe25d89ab07ca11ee72c17cab68df8de.tar.bz2 && tar -xvjf resources/poky.tar.bz2 -C resources",
"compile": "tsc -b && npm run compile:server && npm run compile:client",
"watch": "tsc -b -w",
"compile:client": "tsc -p client/tsconfig.json",
"watch:client": "tsc -w -p client/tsconfig.json",
"compile:server": "cd server && npm run installServer && tsc -p tsconfig.json",
"package": "cd client && npm run package",
"watch:server": "cd server && npm run installServer && tsc -w -p tsconfig.json",
"clean:server": "rm -fr ./server/node_modules ./client/server server/tsconfig.tsbuildinfo server/.vscode-test",
"clean:client": "rm -fr ./client/node_modules ./client/out client/tsconfig.tsbuildinfo client/.vscode-test client/*.vsix",
"clean:lib": "rm -fr ./lib/node_modules",
"clean": "npm run clean:lib && npm run clean:server && npm run clean:client && rm -fr node_modules integration-tests/out .vscode-test .eslintcache resources/poky* resources/docs coverage ./out",
"lint": "eslint . --ext js,ts --cache",
"jest": "jest",
"test": "npm run jest && npm run test:integration && cd client && npm run test:grammar",
"test:integration": "xvfb-run node ./integration-tests/out/runTest.js",
"test:watch": "jest --watchAll"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.1",
"@types/vscode": "^1.75.1",
"@vscode/vsce": "^2.3.5",
"@vscode/test-electron": "^2.3.5",
"vscode-tmgrammar-test": "^0.1.2",
"eslint": "^8.51.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"mocha": "^10.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.3"
},
"workspaces": [
"client/src/lib"
]
}