forked from 1Password/onepassword-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 1.05 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
{
"author": "1Password",
"license": "MIT",
"private": true,
"scripts": {
"test": "npm test --workspaces --if-present",
"esm-example": "npm run build --workspace client && npm run esm-example --workspace examples",
"commonjs-example": "npm run build --workspace client && npm run commonjs-example --workspace examples",
"prepare": "npm run build --workspace client",
"prettier": "npm run prettier --workspaces --if-present",
"prettier-fix": "npm run prettier-fix --workspaces --if-present",
"eslint": "npm run eslint --workspaces --if-present",
"prep-release-no-core": "client/release/scripts/prep-release.sh false",
"prep-release": "client/release/scripts/prep-release.sh true",
"release-no-core": "client/release/scripts/release.sh false beta",
"release": "client/release/scripts/release.sh true beta",
"release-no-core-stable": "client/release/scripts/release.sh false stable",
"release-stable": "client/release/scripts/release.sh true stable"
},
"workspaces": [
"client",
"examples",
"wasm"
]
}