-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.34 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@poseidat/schemas",
"version": "0.0.15",
"description": "The core schemas for the PoseiDAT data interchange formats",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build:clean": "rm -rf lib/schema",
"build:compile": "tsc -b --verbose",
"build:copy-schema": "cp -r src/schema lib",
"build:docs": "rm -rf docs/schemas && jsonschema2md -x docs/schemas -e json -d src/schema -o docs",
"build:typings": "jsonschema2typings --path-depth 2 --type-prefix I --export -o src/schema-types.ts ./src/schema/core/*.json ./src/schema/core/**/*.json ./src/schema/enum/*.json ./src/schema/entry/*.json",
"build": "npm-run-all build:clean build:typings build:compile build:copy-schema build:docs",
"clean": "rimraf lib",
"docs:serve": "docsify serve docs",
"docs": "npm-run-all build:docs docs:serve",
"lint": "eslint .",
"prepare": "npm run build",
"rebuild": "npm-run-all clean build:compile",
"test:jest": "jest --silent --coverage test/",
"test": "npm-run-all build:typings test:jest",
"watch": "tsc -b src/ --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PoseiDAT/schemas.git"
},
"keywords": [
"PoseiDAT",
"maritime",
"fishing",
"scientific",
"ERS"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/PoseiDAT/schemas/issues"
},
"homepage": "https://github.com/PoseiDAT/schemas#readme",
"publishConfig": {
"access": "public"
},
"private": false,
"devDependencies": {
"@adobe/jsonschema2md": "^6.1.4",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/jest": "^27.0.2",
"@types/json-schema": "^7.0.9",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"ajv": "^8.6.3",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.0.0",
"docsify-cli": "^4.4.3",
"eslint": "^8.0.1",
"husky": "^7.0.2",
"jest": "^27.3.1",
"jsonschema-to-typings": "^0.2.14",
"lint-staged": "^11.2.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.0",
"typescript": "^4.4.4",
"uuid": "^8.3.2"
},
"peerDependencies": {
"ajv": "^7.0.4",
"ajv-formats": "^1.5.1",
"ajv-keywords": "^4.0.0"
}
}