mirror of
https://github.com/EDCD/coriolis-data.git
synced 2025-12-08 15:13:23 +00:00
Fixes https://github.com/EDCD/coriolis/issues/780 . I'm not a Node/NPM dev so if this is the Wong Way ™️ I'm open to better suggestions.
33 lines
917 B
JSON
33 lines
917 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|