-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
66 lines (66 loc) · 1.91 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
{
"name": "@open-rpc/schema-utils-js",
"private": false,
"version": "0.0.0-semantic-release-dev",
"description": "",
"main": "build/index.js",
"browser": "build/index-web.js",
"scripts": {
"build": "npm run build:code && npm run build:docs",
"build:docs": "typedoc",
"build:code": "tsc",
"test": "npm run test:unit && npm run test:web",
"test:unit": "jest --coverage",
"test:web": "npm run build:code && webpack && rm -rf dist",
"watch:test": "jest --watch",
"lint": "eslint . --ext .ts"
},
"files": [
"build",
"!build/**/*.test.*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/open-rpc/schema-utils-js.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/open-rpc/schema-utils-js/issues"
},
"homepage": "https://github.com/open-rpc/schema-utils-js#readme",
"dependencies": {
"@json-schema-tools/dereferencer": "^1.6.3",
"@json-schema-tools/meta-schema": "^1.7.5",
"@json-schema-tools/reference-resolver": "^1.2.6",
"@open-rpc/meta-schema": "^1.14.9",
"ajv": "^6.10.0",
"detect-node": "^2.0.4",
"fast-safe-stringify": "^2.0.7",
"fs-extra": "^10.1.0",
"is-url": "^1.2.4",
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@types/detect-node": "^2.0.0",
"@types/fs-extra": "^9.0.1",
"@types/is-url": "^1.2.28",
"@types/isomorphic-fetch": "0.0.39",
"@types/jest": "^29.5.12",
"@types/json-schema": "^7.0.3",
"@types/node-fetch": "^2.1.6",
"@types/rimraf": "^3.0.0",
"@types/webpack-env": "^1.13.9",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"jest": "^29.7.0",
"json-schema": "^0.4.0",
"rimraf": "^3.0.0",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.13",
"typescript": "^4.9.5",
"webpack": "^5.1.3",
"webpack-cli": "^5.1.4"
}
}