forked from bids-standard/legacy-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.04 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
{
"private": true,
"workspaces": [
"bids-validator",
"bids-validator-web"
],
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js ./bids-validator/**/*.js",
"coverage": "./node_modules/.bin/jest --coverage",
"codecov": "./node_modules/.bin/codecov",
"test": "node bids-validator/bin/test-submodule-exists && jest",
"postversion": "lerna version prerelease --preid dev --ignore-scripts --yes --force-publish=*",
"web-dev": "cd bids-validator-web && npm run dev",
"web-build": "cd bids-validator-web && npm run build",
"web-start": "cd bids-validator-web && npm run build && npm start",
"web-export": "npm run web-build && cd bids-validator-web && next export"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"codecov": "^3.8.1",
"jest": "^26.1.0",
"jest-environment-node": "^24.9.0",
"lerna": "^4.0.0"
},
"name": "bids-validator-monorepo"
}