2020-02-24 10:02:16 +01:00
|
|
|
{
|
2020-11-15 09:57:25 +01:00
|
|
|
"name": "bolt-workspace",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"private": true,
|
|
|
|
"description": "The root workspace for building various Bolt language tools",
|
|
|
|
"workspaces": [
|
|
|
|
"@boltlang/compiler",
|
|
|
|
"@boltlang/langserver",
|
|
|
|
"@boltlang/cli",
|
|
|
|
"vscode-extension"
|
|
|
|
],
|
2020-02-24 10:02:16 +01:00
|
|
|
"scripts": {
|
2020-11-15 09:57:25 +01:00
|
|
|
"test": "concurrently --names compiler 'cd @boltlang/compiler && npm test'",
|
|
|
|
"watch": "concurrently --names compiler,langserver,cli,vscode 'cd @boltlang/compiler && npm run watch' 'cd @boltlang/langserver && npm run watch' 'cd @boltlang/cli && npm run watch' 'cd vscode-extension && npm run watch'"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/samvv/BoltJS.git"
|
2020-02-24 10:02:16 +01:00
|
|
|
},
|
2020-11-15 09:57:25 +01:00
|
|
|
"author": "Sam Vervaeck",
|
2020-02-24 10:04:30 +01:00
|
|
|
"license": "GPL-3.0",
|
2020-11-15 09:57:25 +01:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/samvv/BoltJS/issues"
|
2020-02-24 16:52:01 +01:00
|
|
|
},
|
2020-11-15 09:57:25 +01:00
|
|
|
"homepage": "https://github.com/samvv/BoltJS#readme",
|
2020-02-24 16:52:01 +01:00
|
|
|
"devDependencies": {
|
2020-10-29 21:12:11 +01:00
|
|
|
"@babel/core": "^7.12.3",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
2020-11-15 09:57:25 +01:00
|
|
|
"@babel/preset-env": "^7.12.1",
|
|
|
|
"@types/node": "^14.14.7",
|
2020-10-30 14:53:41 +01:00
|
|
|
"ava": "^3.13.0",
|
2020-11-15 09:57:25 +01:00
|
|
|
"babel-loader": "^8.2.1",
|
2020-10-29 21:12:11 +01:00
|
|
|
"concurrently": "^5.3.0",
|
2020-11-15 09:57:25 +01:00
|
|
|
"ts-loader": "^8.0.11",
|
2020-10-29 21:12:11 +01:00
|
|
|
"typescript": "^4.0.5",
|
2020-11-15 09:57:25 +01:00
|
|
|
"webpack": "^5.4.0",
|
|
|
|
"webpack-cli": "^4.2.0"
|
2020-02-24 10:04:30 +01:00
|
|
|
}
|
2020-02-24 10:02:16 +01:00
|
|
|
}
|