flecks/packages/core/package.json

71 lines
1.9 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",
"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-22 09:16:07 -06:00
"clean": "rm -rf yarn.lock && yarn",
2024-01-22 12:11:23 -06:00
"lint": "NODE_PATH=./node_modules eslint --config ./build/core.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",
2024-01-19 05:17:37 -06:00
"test"
2022-02-25 04:58:08 -06:00
],
"dependencies": {
2024-01-22 09:16:07 -06:00
"debug": "4.3.1",
"glob": "^10.3.10",
"jsonparse": "^1.3.1",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"source-map-support": "0.5.19",
"supports-color": "9.2.1"
},
"devDependencies": {
2022-02-25 04:58:08 -06:00
"@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",
2023-11-30 21:41:42 -06:00
"copy-webpack-plugin": "^11.0.0",
2024-01-22 12:11:23 -06:00
"eslint": "^8.56.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",
2023-11-30 21:41:42 -06:00
"globals": "^13.23.0",
2024-01-10 00:26:45 -06:00
"mocha": "^8.3.2",
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",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
2022-02-25 04:58:08 -06:00
}
}