forked from OpenTermsArchive/contrib-declarations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
21 lines (21 loc) · 847 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"type": "module",
"license": "EUPL-1.2",
"scripts": {
"lint": "ota lint",
"lint:fix": "ota lint -- --fix",
"test": "ota lint && ota validate",
"test:schema": "npm run test -- --schema-only",
"test:modified": "npm run test -- --modified",
"start": "ota track",
"start:api": "ota serve",
"start:schedule": "npm run start -- --schedule",
"start:modified": "git diff --name-only HEAD $(git merge-base HEAD origin/main) -- ./declarations/ | grep -v .history | grep -v .filters | sed 's/declarations\\///g' | sed 's/.json//g' | sed 's/.*/\"&\"/' | xargs -r npm run start -- --services",
"dataset": "ota dataset",
"dataset:schedule": "npm run dataset -- --publish --remove-local-copy --schedule"
},
"dependencies": {
"@opentermsarchive/engine": "~4.0.1",
"isomorphic-fetch": "^3.0.0"
}
}