bitburner-src/package.json

109 lines
3.2 KiB
JSON
Raw Normal View History

2018-02-26 17:29:16 +01:00
{
"author": {
"name": "Daniel Xie"
2018-02-26 17:29:16 +01:00
},
"bugs": {
"url": "https://github.com/danielyxie/bitburner/issues"
2018-02-26 17:29:16 +01:00
},
"dependencies": {
"acorn": "^5.0.0",
"acorn-dynamic-import": "^2.0.0",
"ajv": "^5.1.5",
"ajv-keywords": "^2.0.0",
"async": "^2.6.1",
"autosize": "^4.0.2",
2018-02-27 03:06:38 +01:00
"bluebird": "^3.5.1",
"brace": "^0.11.1",
"decimal.js": "7.2.3",
"enhanced-resolve": "^4.0.0",
"escodegen": "^1.11.0",
2018-02-26 17:29:16 +01:00
"escope": "^3.6.0",
"file-saver": "^1.3.8",
2018-02-26 17:29:16 +01:00
"interpret": "^1.0.0",
2018-02-27 03:06:38 +01:00
"jquery": "^3.3.1",
2018-02-26 17:29:16 +01:00
"json-loader": "^0.5.4",
2018-02-27 03:06:38 +01:00
"jsplumb": "^2.6.8",
2018-03-12 20:39:04 +01:00
"jszip": "^3.1.5",
2018-02-26 17:29:16 +01:00
"loader-runner": "^2.3.0",
"loader-utils": "^1.1.0",
"memory-fs": "~0.4.1",
"normalize.css": "^8.0.0",
"numeral": "2.0.6",
2018-02-27 03:06:38 +01:00
"sprintf-js": "^1.1.1",
"tapable": "^1.0.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"uuid": "^3.2.1",
"w3c-blob": "0.0.1"
2018-02-26 17:29:16 +01:00
},
"description": "A cyberpunk-themed incremental game",
2018-02-26 17:29:16 +01:00
"devDependencies": {
"beautify-lint": "^1.0.3",
"benchmark": "^2.1.1",
"bundle-loader": "~0.5.0",
2018-05-05 05:29:22 +02:00
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"css-loader": "^0.28.11",
2018-02-26 17:29:16 +01:00
"es6-promise-polyfill": "^1.1.1",
"eslint": "^4.19.1",
"eslint-plugin-node": "^6.0.1",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
2018-02-26 17:29:16 +01:00
"i18n-webpack-plugin": "^1.0.0",
"istanbul": "^0.4.5",
"js-beautify": "^1.5.10",
"json5": "^1.0.1",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"lodash": "^4.17.10",
"mini-css-extract-plugin": "^0.4.1",
"mkdirp": "^0.5.1",
2018-02-26 17:29:16 +01:00
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.0.0",
"node-sass": "^4.9.2",
"nsp": "^3.2.1",
2018-02-26 17:29:16 +01:00
"raw-loader": "~0.5.0",
"sass-loader": "^7.0.3",
2018-02-26 17:29:16 +01:00
"script-loader": "~0.7.0",
"should": "^11.1.1",
"simple-git": "^1.96.0",
2018-02-26 17:29:16 +01:00
"sinon": "^2.3.2",
"source-map": "^0.7.3",
"style-loader": "^0.21.0",
"stylelint": "^9.2.1",
"stylelint-declaration-use-variable": "^1.6.1",
"stylelint-order": "^0.8.1",
"ts-loader": "^4.4.1",
"tslint": "^5.10.0",
"typescript": "^2.9.2",
"url-loader": "^1.0.1",
"watchpack": "^1.6.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.4",
"webpack-dev-middleware": "^3.1.3",
2018-05-05 05:29:22 +02:00
"webpack-dev-server": "^3.1.4",
"worker-loader": "^2.0.0"
2018-02-26 17:29:16 +01:00
},
"engines": {
"node": ">=4.3.0 <5.0.0 || >=5.10"
},
"homepage": "https://github.com/danielyxie/bitburner",
"license": "SEE LICENSE IN license.txt",
"name": "bitburner",
2018-02-26 17:29:16 +01:00
"repository": {
"type": "git",
"url": "git+https://github.com/danielyxie/bitburner.git"
2018-02-26 17:29:16 +01:00
},
"scripts": {
"start:dev": "webpack-dev-server --progress --env.devServer --mode development",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"lint": "npm run lint:typescript & npm run lint:javascript & npm run lint:style",
2018-06-27 04:04:45 +02:00
"lint:javascript": "eslint *.js ./src/**/*.js ./tests/**/*.js ./utils/**/*.js",
"lint:style": "stylelint ./css/*",
"lint:typescript": "tslint --project . --exclude **/*.d.ts --format stylish src/**/*.ts utils/**/*.ts",
"watch": "webpack --watch --mode production",
"watch:dev": "webpack --watch --mode development"
2018-02-26 17:29:16 +01:00
},
"version": "0.40.2"
2018-02-26 17:29:16 +01:00
}