-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.4 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
{
"name": "@openactive/data-models",
"version": "2.0.318",
"description": "Data models used to drive that OpenActive validator, developer documentation, and model libraries",
"homepage": "https://www.openactive.io",
"author": "OpenActive Community <[email protected]>",
"keywords": [
"openactive",
"odi",
"models",
"json"
],
"main": "src/index.js",
"engines": {
"node": "14.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openactive/data-models.git"
},
"bugs": {
"url": "https://github.com/openactive/data-models/issues"
},
"license": "MIT",
"devDependencies": {
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.23.3",
"jasmine": "^5.1.0",
"jasmine-expect": "^5.0.0",
"jsonld": "^8.3.1",
"rdflib": "^1.1.0",
"sync-request": "^6.1.0"
},
"scripts": {
"build": "node scripts/build.js",
"lint": "eslint \"src/**/*.js\" \"scripts/**/*.js\"",
"lint-fix": "eslint --fix \"src/**/*.js\" \"scripts/**/*.js\"",
"prepare": "npm run build",
"pretest": "npm run build && npm run lint",
"test": "npm run test-no-lint",
"test-no-lint": "jasmine",
"test-debug": "node --inspect-brk -i ./node_modules/jasmine/bin/jasmine.js",
"postpublish": "git push",
"publish-patch": "npm test && git pull && git push && npm version patch && npm publish"
}
}