2021-03-20 06:32:40 -05:00
|
|
|
{
|
|
|
|
"name": "@latus/build",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"main": "index.js",
|
|
|
|
"author": "cha0s",
|
|
|
|
"license": "MIT",
|
|
|
|
"bin": {
|
|
|
|
"latus-build": "./build.js"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2021-03-22 02:53:54 -05:00
|
|
|
"build": "LATUS_BABEL_CONFIG=./src/build/.babelrc.js LATUS_ESLINT_CONFIG=./.eslintrc.js LATUS_POSTCSS_CONFIG=./src/build/postcss.config.js LATUS_WEBPACK_CONFIG=./src/build/webpack.config.js NODE_PATH=./node_modules webpack --config ./webpack.config.js --mode production",
|
2021-03-20 08:43:47 -05:00
|
|
|
"fp": "npm unpublish --force $(node -e 'const {name, version} = require(`./package.json`); process.stdout.write(`${name}@${version}`)') && npm publish",
|
2021-03-20 11:55:34 -05:00
|
|
|
"lint": "NODE_PATH=./node_modules eslint --config ./src/build/.eslintrc.js --format codeframe --ext mjs,js .",
|
2021-03-20 06:32:40 -05:00
|
|
|
"test": "yarn --silent run build --display none && mocha --colors test.js"
|
|
|
|
},
|
|
|
|
"files": [
|
2021-03-29 19:05:58 -05:00
|
|
|
"babel.js",
|
|
|
|
"babel.js.map",
|
2021-03-20 06:32:40 -05:00
|
|
|
"build",
|
|
|
|
"build.js",
|
|
|
|
"index.js",
|
|
|
|
"index.js.map",
|
|
|
|
"test.js",
|
|
|
|
"test.js.map"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2021-03-20 08:20:22 -05:00
|
|
|
"@babel/eslint-parser": "^7.13.10",
|
2021-03-31 10:35:43 -05:00
|
|
|
"@babel/eslint-plugin": "^7.13.10",
|
2021-03-29 19:05:58 -05:00
|
|
|
"@babel/parser": "^7.13.12",
|
2021-03-20 08:20:22 -05:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.12.13",
|
2021-03-22 14:07:35 -05:00
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.12.16",
|
2021-03-20 08:20:22 -05:00
|
|
|
"@babel/plugin-proposal-private-methods": "^7.12.13",
|
2021-03-20 10:46:38 -05:00
|
|
|
"@babel/plugin-syntax-jsx": "^7.12.13",
|
2021-03-23 16:05:39 -05:00
|
|
|
"@babel/preset-react": "^7.12.13",
|
2021-03-29 19:05:58 -05:00
|
|
|
"@babel/types": "^7.13.12",
|
2021-03-20 06:32:40 -05:00
|
|
|
"@neutrinojs/airbnb": "^9.4.0",
|
|
|
|
"@neutrinojs/banner": "^9.4.0",
|
|
|
|
"@neutrinojs/copy": "^9.4.0",
|
|
|
|
"@neutrinojs/mocha": "^9.4.0",
|
2021-03-22 02:53:54 -05:00
|
|
|
"babel-plugin-webpack-alias": "^2.1.2",
|
2021-03-20 06:32:40 -05:00
|
|
|
"chai": "4.2.0",
|
|
|
|
"commander": "^7.1.0",
|
2021-04-01 14:42:52 -05:00
|
|
|
"eslint": "^7.0.0",
|
2021-03-20 06:32:40 -05:00
|
|
|
"eslint-import-resolver-webpack": "0.13.0",
|
|
|
|
"neutrino": "^9.4.0",
|
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"source-map-support": "0.5.19",
|
|
|
|
"webpack": "^4",
|
2021-03-23 12:27:38 -05:00
|
|
|
"webpack-cli": "^3",
|
|
|
|
"webpack-node-externals": "2.5.2"
|
2021-03-20 06:32:40 -05:00
|
|
|
}
|
|
|
|
}
|