forked from softwareCobbler/cfc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) · 961 Bytes
/
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
{
"name": "cfc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"install-all": "npm install && cd src/lang-server/client && npm install && cd ../server && npm install && cd ../../../",
"test-all": "tsc --build src/compiler && mocha --extension=ts --require=ts-node/register --spec=test/**/*.ts",
"test-one": "tsc --build src/compiler && echo && mocha --extension=ts --require=ts-node/register --spec=",
"clean": "rm -rf out && rm -rf cflsp-vscode/out",
"build-cflsp": "tsc --build src/build && node out/build/build --debug",
"build-cflsp-prod": "tsc --build src/build && node out/build/build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/mocha": "^8.2.3",
"@types/node": "^14.17.17",
"esbuild": "^0.17.5",
"mocha": "^8.4.0",
"ts-node": "^9.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"vscode-languageserver-textdocument": "^1.0.8"
}
}