forked from rdkcentral/firebolt-apis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 3.1 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
{
"name": "@firebolt-js/sdks",
"version": "1.1.1-next.2",
"description": "The Firebolt JS SDK",
"type": "module",
"bin": {
"firebolt-version": "./src/js/version.mjs"
},
"workspaces": [
"src/sdks/core",
"src/sdks/manage"
],
"scripts": {
"fs:setup": "npm run clean && mkdir -p dist",
"validate:each": "npx firebolt-openrpc validate --input src/openrpc --schemas node_modules/@firebolt-js/schemas/src/schemas --schemas src/schemas --transformations",
"validate:compiled": "npx firebolt-openrpc validate --input dist/firebolt-open-rpc.json && npm run validate --workspaces",
"validate": "npm run validate:each && npm run validate:compiled ",
"compile": "npx firebolt-openrpc openrpc --input src --template src/template/openrpc/template.json --output ./dist/firebolt-open-rpc.json --schemas node_modules/@firebolt-js/schemas/src/schemas --schemas src/schemas",
"slice": "npm run slice --workspaces",
"sdks": "npm run sdk --workspaces",
"docs": "npm run docs --workspaces",
"wiki": "npm run wiki --workspaces",
"test:setup": "npm run test:setup --workspaces",
"test": "npm run test:setup && NODE_OPTIONS=--experimental-vm-modules npx --config=jest.config.json --detectOpenHandles jest",
"clean": "rm -rf dist && npm run clean --workspaces",
"dist": "npm run fs:setup && npm run validate:each && npm run compile && npm run specification && npm run version && npm run dist:notest --workspaces && npm run test",
"specification": "node ./src/js/version-specification/index.mjs --source ./src/json/firebolt-specification.json",
"specification:report": "node ./src/js/version-specification/index.mjs --source ./dist/firebolt-specification.json --report",
"version": "node ./src/js/version.mjs sync",
"dev:setup": "husky install",
"publish:docs": "node ./src/js/github.io/index.mjs --output",
"release-notes": "npx semantic-release --dry-run --repository-url [email protected]:rdkcentral/firebolt-apis.git --plugins @semantic-release/commit-analyzer,@semantic-release/release-notes-generator",
"prepack": "npm run dist"
},
"repository": {
"type": "git",
"url": "ssh://github.com/rdkcentral/firebolt-apis.git"
},
"author": "",
"bugs": {
"url": "https://github.com/rdkcentral/firebolt-apis/issues"
},
"homepage": "https://github.com/rdkcentral/firebolt-apis#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@firebolt-js/openrpc": "2.3.0",
"@firebolt-js/schemas": "2.0.0",
"@saithodev/semantic-release-backmerge": "^3.2.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.1",
"ajv": "^6.12.6",
"husky": "^8.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.3",
"mkdirp": "^2.1.6",
"nopt": "^7.1.0",
"production-changelog": "./src/js/production-changelog/",
"semantic-release": "^21.1.1",
"typescript": "^4.6.4"
},
"keywords": [
"firebolt",
"apps",
"sdk"
],
"license": "Apache-2.0"
}