-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 2.87 KB
/
package.json
File metadata and controls
executable file
·64 lines (64 loc) · 2.87 KB
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
{
"name": "@firebolt-js/lifecycle-manager",
"version": "1.1.0-next.2",
"description": "A lifecycle-manager specific RPC definition",
"main": "./dist/lib/lifecycle-manager.mjs",
"types": "./dist/lib/lifecycle-manager.d.ts",
"type": "module",
"workspaces": [
"src/sdks/lifecycle-manager"
],
"scripts": {
"fs:setup": "npm run clean && mkdir -p dist",
"validate:each": "npx firebolt-openrpc validate --input src/openrpc --schemas src/schemas --transformations",
"validate:compiled": "npx firebolt-openrpc validate --input dist/firebolt-open-rpc.json --pass-throughs && 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 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 git@github.com:rdkcentral/firebolt-apis.git --plugins @semantic-release/commit-analyzer,@semantic-release/release-notes-generator",
"prepack": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdkcentral/ripple-rpc.git"
},
"author": "",
"bugs": {
"url": "https://github.com/rdkcentral/ripple-rpc/issues"
},
"homepage": "https://github.com/rdkcentral/ripple-rpc#readme",
"devDependencies": {
"@firebolt-js/openrpc": "3.1.1",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"ajv": "^6.12.6",
"husky": "^8.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"mkdirp": "^0.5.6",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"typescript": "^4.7.4"
},
"keywords": [
"firebolt",
"lifecycle-manager",
"ripple"
],
"license": "Apache-2.0"
}