-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 1.08 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
{
"name": "allint",
"displayName": "AL Lint",
"description": "Check your code for maintainability and upgradeability",
"license": "MIT",
"version": "0.1.8",
"publisher": "StefanMaron",
"icon": "ALLint_icon.png",
"engines": {
"vscode": "^1.22.0"
},
"repository": {
"type": "git",
"url": "https://github.com/stefanmaron/vscode-allint.git"
},
"scripts": {
"postinstall": "cd server && npm install && cd ../client && npm install && cd ..",
"compile": "tsc -p client/tsconfig.json && cd server && npm run installServer && cd .. && tsc -p server/tsconfig.json",
"compile:client": "tsc -p client/tsconfig.json",
"watch:client": "tsc -w -p client/tsconfig.json",
"compile:server": "cd server && npm run installServer && cd .. && tsc -p server/tsconfig.json",
"watch:server": "cd server && npm run installServer && cd .. && tsc -w -p server/tsconfig.json"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.44",
"typescript": "^2.5.3"
}
}