forked from cmmcleod/coriolis-data
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
32 lines (32 loc) · 917 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
28
29
30
31
32
{
"name": "coriolis-data",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "https://github.com/EDCD/coriolis-data"
},
"main": "index.js",
"homepage": "https://coriolis.io",
"bugs": "https://github.com/EDCD/coriolis/issues",
"private": true,
"engine": "node >= 4.0.0",
"license": "MIT",
"scripts": {
"lint": "eslint --plugin json --ext .json modules ships dist",
"jasmine": "jasmine-node spec",
"jasmine-no-stack": "jasmine-node --noStack spec",
"test": "npm run lint && npm run jasmine-no-stack",
"start": "node generate_distribution.js",
"build": "node generate_distribution.js",
"preinstall": "npm install --ignore-scripts",
"install": "node generate_distribution.js"
},
"dependencies": {
"uglify-js": "^2.7.5"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-json": "^1.1.0",
"jasmine-node": "^1.14.5"
}
}