flecks/packages/core/package.json

63 lines
1.8 KiB
JSON
Raw Normal View History

2022-02-25 04:58:08 -06:00
{
"name": "@flecks/core",
2024-01-26 10:40:31 -06:00
"version": "3.1.0",
2022-02-25 04:58:08 -06:00
"author": "cha0s",
"license": "MIT",
"scripts": {
2024-01-23 20:55:01 -06:00
"build": "webpack --config ./build/core.webpack.config.js --mode production",
2024-01-26 08:26:59 -06:00
"clean": "rm -rf dist node_modules yarn.lock",
2024-01-23 20:55:01 -06:00
"lint": "eslint --config ./build/core.eslint.config.js .",
2022-02-27 20:40:51 -06:00
"postversion": "cp package.json dist",
2024-01-23 20:55:01 -06:00
"test": "npm run build -d && mocha --colors ./dist/test.js"
2022-02-25 04:58:08 -06:00
},
2024-01-23 21:28:15 -06:00
"repository": {
"type": "git",
"url": "git+https://github.com/cha0s/flecks.git",
"directory": "packages/core"
},
"publishConfig": {
"access": "public"
},
2022-02-25 04:58:08 -06:00
"files": [
"index.js",
2024-01-23 22:53:06 -06:00
"server.js"
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
}
}