-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 804 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 804 Bytes
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
{
"name": "lhc-vdm-editor",
"version": "0.0.1",
"description": "A code and file editor for VdM scans.",
"main": "index.js",
"scripts": {
"test": "node console_test.js",
"test-server": "http-server -a 127.0.0.1 -c-1",
"lint": "tslint -c ./tslint.json ./src/**/*.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CERN/lhc-vdm-editor.git"
},
"author": "CERN",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CERN/lhc-vdm-editor/issues"
},
"homepage": "https://github.com/CERN/lhc-vdm-editor#readme",
"dependencies": {},
"devDependencies": {
"http-server": "^14.1.1",
"jasmine": "^3.4.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"optionalDependencies": {
"puppeteer": "^1.19.0"
}
}