Files
coriolis-data/package.json
Chris df5efe7b46 Install uglify-js before use.
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.
2024-10-19 11:19:31 -04:00

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"
}
}