-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
35 lines (35 loc) · 1.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"private": true,
"name": "ml-array-utils",
"main": "lib/index.js",
"module": "src/index.js",
"description": "Functional utilities to transform and compute stats on arrays",
"scripts": {
"bootstrap": "lerna bootstrap --no-ci",
"build": "npm run build-clean && lerna exec -- rollup -c ../../rollup.config.js",
"build-clean": "rimraf ./packages/*/lib/ && rimraf ./packages/*/lib-es6/",
"eslint": "eslint packages/**/*.js --cache",
"eslint-fix": "npm run eslint -- --fix",
"prepare": "npm run bootstrap",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"publish": "git pull --rebase && npm run build && npm run test-publish && lerna publish",
"test": "run-s build test-only eslint prettier",
"test-watch": "jest --watch",
"test-publish": "run-s test-only eslint",
"test-only": "jest --coverage"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"eslint": "^8.10.0",
"eslint-config-cheminfo": "^7.2.2",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.68.0"
}
}