mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2025-12-29 11:00:07 -05:00
65 lines
1.8 KiB
JSON
65 lines
1.8 KiB
JSON
{
|
|
"private": true,
|
|
"description": "",
|
|
"scripts": {
|
|
"build": "cross-env NODE_ENV=production FORCE_COLOR=1 lerna run build --stream",
|
|
"build:watch": "FORCE_COLOR=1 lerna run build:watch --stream --concurrency 99 --no-sort",
|
|
"lint": "eslint packages --ext .js --ext .jsx",
|
|
"test": "yarn run test:unit",
|
|
"test:integration": "aw puppet -c aw.config.js --type integration",
|
|
"test:unit": "aw -c aw.config.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/qlik-oss/nebula.js.git"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS && lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js, jsx}": [
|
|
"eslint"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@after-work.js/aw": "^5.1.3",
|
|
"@babel/cli": "^7.2.3",
|
|
"@babel/core": "^7.2.2",
|
|
"@babel/plugin-transform-react-jsx": "^7.3.0",
|
|
"@babel/preset-env": "^7.3.1",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"@commitlint/cli": "^7.4.0",
|
|
"@commitlint/config-conventional": "^7.3.1",
|
|
"babel-loader": "^8.0.5",
|
|
"babel-plugin-istanbul": "^5.1.0",
|
|
"cross-env": "^5.2.0",
|
|
"enigma.js": "^2.4.0",
|
|
"eslint": "^5.12.1",
|
|
"eslint-config-airbnb": "^17.1.0",
|
|
"eslint-plugin-import": "^2.15.0",
|
|
"eslint-plugin-jsx-a11y": "^6.2.0",
|
|
"eslint-plugin-mocha": "^5.2.1",
|
|
"eslint-plugin-react": "^7.12.4",
|
|
"husky": "^1.3.1",
|
|
"lerna": "^3.10.7",
|
|
"lint-staged": "^8.1.1",
|
|
"rollup": "^1.1.2",
|
|
"rollup-plugin-babel": "^4.3.2",
|
|
"rollup-plugin-commonjs": "^9.2.0",
|
|
"rollup-plugin-dependency-flow": "^0.3.0",
|
|
"rollup-plugin-json": "^3.1.0",
|
|
"rollup-plugin-node-resolve": "^4.0.0",
|
|
"rollup-plugin-replace": "^2.1.0",
|
|
"rollup-plugin-sass": "^1.1.0",
|
|
"rollup-plugin-terser": "^4.0.3",
|
|
"ws": "^6.1.3",
|
|
"yargs": "^12.0.5"
|
|
},
|
|
"workspaces": [
|
|
"generated",
|
|
"packages/*"
|
|
]
|
|
}
|