-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.28 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": "@maxfield/node-casl2-language-server",
"version": "1.0.2",
"description": "CASL2 language server conforming to Microsoft's Language Server Protocol",
"main": "dist/src/server.js",
"types": "dist/src/index.d.ts",
"author": "Maxfield Walker",
"license": "MIT",
"scripts": {
"compile": "node ./node_modules/typescript/bin/tsc -p .",
"watch": "node ./node_modules/typescript/bin/tsc -w -p .",
"test": "npm run compile && mocha",
"test:coverage": "npm run compile && istanbul cover ./node_modules/mocha/bin/_mocha -- --no-timeouts && remap-istanbul --input ./coverage/coverage.json --output ./coverage/lcov.ts.info --type lcovonly",
"prepublish": "npm run compile",
"installServer": "installServerIntoExtension ../../dist/src ./package.json ./tsconfig.json && tsc -p ."
},
"devDependencies": {
"@types/lodash": "^4.14.55",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"coveralls": "^2.12.0",
"istanbul": "^0.4.5",
"lodash": "^4.17.4",
"mocha": "^2.3.3",
"remap-istanbul": "^0.9.1",
"typescript": "^2.2.1"
},
"dependencies": {
"@maxfield/casl2-lint": "^1.0.0",
"@maxfield/node-casl2-core": "^1.2.0",
"@reactivex/rxjs": "^5.2.1-smooth",
"lodash": "^4.17.4",
"vscode-languageserver": "^3.2.0"
}
}