mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-18 11:00:03 -05:00
60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "oc-k6",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"clean": "rm -rf ./dist",
|
|
"lint": "eslint './src/**/*.ts' --fix",
|
|
"build": "rollup -c",
|
|
"build:w": "rollup -c -w"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts}": [
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.9.0",
|
|
"@babel/polyfill": "^7.12.1",
|
|
"@babel/preset-env": "^7.9.5",
|
|
"@babel/preset-typescript": "^7.9.0",
|
|
"@commitlint/cli": "^8.3.5",
|
|
"@commitlint/config-conventional": "^8.3.4",
|
|
"@rollup/plugin-commonjs": "^11.1.0",
|
|
"@rollup/plugin-json": "^4.0.3",
|
|
"@rollup/plugin-node-resolve": "^7.1.3",
|
|
"@rollup/pluginutils": "^4.1.0",
|
|
"@types/k6": "^0.28.2",
|
|
"@types/lodash": "^4.14.165",
|
|
"@typescript-eslint/eslint-plugin": "^4.9.0",
|
|
"@typescript-eslint/parser": "^4.9.0",
|
|
"babel-plugin-lodash": "^3.3.4",
|
|
"eslint": "^7.14.0",
|
|
"eslint-config-prettier": "^6.15.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-jest": "^23.8.2",
|
|
"eslint-plugin-prettier": "^3.2.0",
|
|
"eslint-plugin-simple-import-sort": "^6.0.1",
|
|
"husky": "^4.3.0",
|
|
"jest": "^25.4.0",
|
|
"k6": "^0.0.0",
|
|
"lint-staged": "^10.1.7",
|
|
"prettier": "^2.2.1",
|
|
"prettier-eslint": "^12.0.0",
|
|
"rollup": "^2.7.2",
|
|
"rollup-plugin-babel": "^4.4.0",
|
|
"rollup-plugin-multi-input": "^1.1.1",
|
|
"rollup-plugin-terser": "^5.3.0",
|
|
"typescript": "^4.1.2"
|
|
},
|
|
"dependencies": {
|
|
"lodash": "^4.17.20",
|
|
"query-string": "^6.13.7"
|
|
}
|
|
}
|