flecks/packages/core/package.json

79 lines
2.1 KiB
JSON
Raw Normal View History

2022-02-25 04:58:08 -06:00
{
"name": "@flecks/core",
2022-02-28 11:59:16 -06:00
"repository": {
2022-02-28 12:03:04 -06:00
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
2022-02-28 11:59:16 -06:00
"directory": "packages/core"
},
2022-02-27 19:42:16 -06:00
"publishConfig": {
"access": "public"
},
2024-01-16 00:28:20 -06:00
"version": "3.0.0",
2022-02-25 04:58:08 -06:00
"main": "index.js",
"author": "cha0s",
"license": "MIT",
"bin": {
2024-01-16 00:28:20 -06:00
"flecks": "./build/cli.js"
2022-02-25 04:58:08 -06:00
},
"scripts": {
2024-01-16 00:28:20 -06:00
"build": "NODE_PATH=./node_modules webpack --config ./build/core.webpack.config.js --mode production",
2024-01-04 03:20:55 -06:00
"clean": "rm -rf dist bun.lockb && bun install",
2023-11-30 21:41:42 -06:00
"lint": "NODE_PATH=./node_modules eslint --config ./build/eslint.config.js .",
2022-02-27 20:40:51 -06:00
"postversion": "cp package.json dist",
2024-01-16 00:28:20 -06:00
"test": "npm run build -d && mocha -t 10000 --colors ./dist/test.js"
2022-02-25 04:58:08 -06:00
},
"files": [
"build",
"index.js",
"index.js.map",
"server.js",
"server.js.map",
"src",
"start.js",
"start.js.map",
2022-02-26 11:58:54 -06:00
"test",
2022-02-25 04:58:08 -06:00
"test.js",
"test.js.map"
],
"dependencies": {
"@babel/core": "^7.12.10",
2023-11-30 21:41:42 -06:00
"@babel/eslint-parser": "^7.23.3",
"@babel/eslint-plugin": "^7.22.10",
2022-02-25 04:58:08 -06:00
"@babel/plugin-transform-regenerator": "^7.16.7",
"@babel/preset-env": "^7.12.11",
2023-11-30 21:41:42 -06:00
"babel-loader": "^9.1.3",
2022-02-28 00:00:39 -06:00
"babel-merge": "^3.0.0",
2022-02-25 04:58:08 -06:00
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
2024-01-04 15:15:02 -06:00
"commander": "11.1.0",
2023-11-30 21:41:42 -06:00
"copy-webpack-plugin": "^11.0.0",
2022-02-25 04:58:08 -06:00
"debug": "4.3.1",
2022-03-24 03:01:37 -05:00
"enhanced-resolve": "^5.9.2",
2022-02-25 04:58:08 -06:00
"eslint": "^7.0.0",
2023-11-30 21:41:42 -06:00
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
2023-12-01 19:56:51 -06:00
"eslint-import-resolver-webpack": "^0.13.8",
2023-11-30 21:41:42 -06:00
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
2024-01-16 00:28:20 -06:00
"eslint-webpack-plugin": "^3.2.0",
2024-01-13 01:59:01 -06:00
"glob": "^10.3.10",
2023-11-30 21:41:42 -06:00
"globals": "^13.23.0",
2024-01-16 00:28:20 -06:00
"graceful-fs": "^4.2.11",
2022-03-01 14:27:59 -06:00
"js-yaml": "4.1.0",
2022-03-01 01:52:56 -06:00
"jsonparse": "^1.3.1",
2022-02-25 04:58:08 -06:00
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
2024-01-10 00:26:45 -06:00
"mocha": "^8.3.2",
2024-01-16 00:28:20 -06:00
"null-loader": "^4.0.1",
2022-02-25 04:58:08 -06:00
"rimraf": "^3.0.2",
2023-11-30 21:41:42 -06:00
"source-map-loader": "4.0.1",
2022-02-25 04:58:08 -06:00
"source-map-support": "0.5.19",
2022-03-02 04:04:05 -06:00
"supports-color": "9.2.1",
2023-11-30 21:41:42 -06:00
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
2022-02-25 04:58:08 -06:00
}
}