-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 873 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "fileformatconformance",
"version": "1.0.0",
"scripts": {
"test": "npm run build:data && npm run test:data",
"test:data": "cd src && poetry run pytest -- --check-max-tb=0",
"build:data": "cd src && poetry run construct-all && poetry run coverage",
"watch:data:full": "nodemon --watch data --exec \"npm run build:data && npm run test:data && npm --prefix conformance-search run copy:data\"",
"watch:data": "nodemon --watch data --exec \"npm run build:data && npm --prefix conformance-search run copy:data\"",
"dev:full": "concurrently \"npm run watch:data:full\" \"npm --prefix conformance-search run dev\"",
"dev": "concurrently \"npm run watch:data\" \"npm --prefix conformance-search run dev\"",
"postinstall": "cd src && poetry install"
},
"dependencies": {
"concurrently": "^8.2.1",
"nodemon": "^3.0.1"
}
}