-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.65 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
{
"name": "casm-lang.plugin.monaco",
"displayName": "casmd-monaco",
"description": "CASM Language Server Protocol Client Extension for Monaco Editor",
"author": "CASM Organization (https://casm-lang.org)",
"publisher": "Unpublished",
"version": "0.4.0",
"license": "GPL-3.0+",
"repository": {
"type": "git",
"url": "https://github.com/casm-lang/casm-lang.plugin.monaco.git"
},
"bugs": {
"url": "https://github.com/casm-lang/casm"
},
"main": "./obj/monaco.js",
"typings": "./obj/monaco",
"devDependencies": {
"@types/node": "^7.10.6",
"@types/ws": "^0.0.39",
"copy-webpack-plugin": "^4.5.3",
"rimraf": "^2.6.3",
"typescript": "^2.9.2",
"webpack": "^2.3.3",
"webpack-uglify-js-plugin": "^1.1.9"
},
"dependencies": {
"bootstrap": "^3.4.1",
"command-line-args": "^4.0.5",
"express": "^4.16.4",
"jquery": "^3.4.1",
"lodash": "^4.17.13",
"monaco-languageclient": "^0.1.0",
"randomatic": "^3.0.0",
"reconnecting-websocket": "^3.0.3",
"request-light": "^0.2.4",
"viz.js": "^1.8.2",
"vscode-json-languageservice": "^2.0.7",
"vscode-languageserver": "^3.5.1",
"vscode-uri": "^1.0.6",
"vscode-ws-jsonrpc": "^0.0.1-alpha.3",
"ws": "^7.0.0"
},
"scripts": {
"compile": "./node_modules/.bin/tsc",
"build": "npm run compile && ./node_modules/.bin/webpack",
"clean": "./node_modules/.bin/rimraf ./obj",
"clean-all": "npm run clean && ./node_modules/.bin/rimraf ./node_modules",
"server": "node src/casmd.js",
"standalone": "node src/casmd.js -S",
"standalone-memcheck": "valgrind --leak-check=full node --expose_gc src/casmd.js -S -m"
}
}