forked from bids-standard/legacy-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.65 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"private": true,
"workspaces": [
"bids-validator",
"bids-validator-web"
],
"scripts": {
"lint": "eslint \"./bids-validator/{tests,utils,validators}/**/*.js\"",
"coverage": "jest --coverage",
"codecov": "codecov",
"test": "node bids-validator/bin/test-submodule-exists && jest",
"postversion": "lerna version prerelease --preid dev --ignore-scripts --yes --force-publish=*",
"prepublishOnly": "npm run prepublishOnly -w bids-validator",
"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 build"
},
"jest": {
"testEnvironment": "node",
"moduleNameMapper": {
"^uuid$": "uuid"
},
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/bids-validator/src/",
"/bids-validator/spec/"
],
"transformIgnorePatterns": [
"node_modules/(?!chai)"
]
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"codecov": "^3.8.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"lerna": "^8.1.7",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0"
},
"name": "bids-validator-monorepo",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browser": {
"assert": false
}
}