forked from cheminfo-js/spectra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.37 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
40
41
42
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "npm run build-clean && lerna exec -- rollup -c ../../rollup.config.js",
"build-clean": "rimraf ./packages/*/lib/",
"convert-nmrshiftdb": "node packages/nmr-predictor/scripts/nmrshiftdb2ToJson.js",
"eslint": "eslint packages *.js --cache",
"eslint-fix": "npm run eslint -- --fix",
"local-build": "node_modules/.bin/cheminfo build --entry builder/SD.js --root SD --out-name 'SD'",
"prepare": "npm run bootstrap",
"test": "npm run build && npm run test-only && npm run eslint",
"test-only": "jest",
"test-watch": "jest --watch",
"publish": "git pull --rebase && npm run test && lerna publish"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@rollup/plugin-json": "^4.0.1",
"eslint": "^6.1.0",
"eslint-config-cheminfo": "^2.0.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.0",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.19.1",
"jest": "^24.8.0",
"jest-matcher-deep-close-to": "^1.3.0",
"lerna": "^3.16.4",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"rollup": "^1.19.4",
"should": "^13.2.3"
},
"dependencies": {},
"prettier": {
"arrowParens": "always",
"tabWidth": 2,
"singleQuote": true,
"semi": true,
"trailingComma": "all"
}
}