forked from rdkcentral/firebolt-openrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.76 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
{
"name": "@firebolt-js/openrpc",
"version": "1.8.0-next.1",
"description": "The Firebolt SDK Code & Doc Generator",
"main": "src/js/sdk/index.mjs",
"type": "module",
"bin": {
"firebolt-openrpc": "./src/cli.mjs"
},
"scripts": {
"prepack": "npm run prepare:setup && npm run dist",
"prepare:setup": "npx mkdirp ./dist/docs ./build/docs/markdown ./build/docs/wiki ./build/sdk/javascript/src",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config=jest.config.json --detectOpenHandles",
"build": "npm run validate && npm run build:docs && npm run build:sdk",
"validate": "node ./src/cli.mjs --task validate --source ./src --shared-schemas test/sharedSchemas && npm run build:openrpc && node ./src/cli.mjs --task validate --source ./build/sdk-open-rpc.json --shared-schemas test/sharedSchemas",
"build:openrpc": "node ./src/cli.mjs --task openrpc --source ./src --template ./src/template/openrpc/template.json --output ./build/sdk-open-rpc.json --shared-schemas test/sharedSchemas",
"build:sdk": "node ./src/cli.mjs --task sdk --source ./src/ --template ./src/local/template/js --output ./build/sdk/javascript/src --shared-schemas test/sharedSchemas",
"build:d": "node ./src/cli.mjs --task declarations --source ./src/ --output ./dist/lib/sdk.d.ts --shared-schemas src/schemas",
"build:docs": "node ./src/cli.mjs --task docs --source ./src/ --template ./src/template/markdown --output ./build/docs/markdown --shared-schemas test/sharedSchemas --as-path",
"build:wiki": "node ./src/cli.mjs --task docs --source ./src/ --template ./src/template/markdown --output ./build/docs/wiki --shared-schemas test/sharedSchemas",
"dist": "npm run validate && npm run build:sdk && npm run build:docs && npm run test",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdkcentral/firebolt-openrpc.git"
},
"author": "",
"bugs": {
"url": "https://github.com/rdkcentral/firebolt-openrpc/issues"
},
"homepage": "https://github.com/rdkcentral/firebolt-openrpc#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"husky": "^8.0.1",
"jest": "^27.3.1",
"semantic-release": "^19.0.5"
},
"keywords": [
"firebolt",
"apps",
"sdk"
],
"license": "Apache-2.0",
"dependencies": {
"ajv": "^8.3.0",
"ajv-formats": "^2.1.0",
"array.prototype.groupby": "^1.1.0",
"crocks": "^0.12.4",
"deepmerge": "^4.2.2",
"fs-extra": "^10.1.0",
"highland": "^2.13.5",
"mkdirp": "^0.5.6",
"node-fetch": "^3.2.10",
"nopt": "^5.0.0",
"util": "^0.12.4"
}
}