-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.3 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
36
37
38
39
{
"name": "ml-array-xy",
"version": "0.3.0",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"src",
"lib"
],
"description": "Functional utilities for sets of points",
"scripts": {
"bootstrap": "lerna bootstrap --no-ci",
"build-lerna": "npm run build-lerna-clean && lerna exec -- rollup -c ../../rollup.config.js",
"build-lerna-clean": "rimraf ./packages/*/lib/",
"eslint": "eslint packages --cache",
"eslint-fix": "npm run eslint -- --fix",
"prepare": "npm run bootstrap",
"prepack": "rollup -c",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"publish": "git pull --rebase && npm run build-lerna && npm run test-publish && lerna publish -y --no-verify-access",
"test": "run-s prepare build-lerna test-only eslint && npm run prettier",
"test-only": "jest --coverage",
"test-publish": "npm run test-only && npm run eslint",
"upgrade": "ncu --deep --upgrade"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"eslint": "^8.10.0",
"eslint-config-cheminfo": "^7.2.2",
"jest": "^27.5.1",
"jest-matcher-deep-close-to": "^3.0.2",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.68.0"
}
}