forked from w3c-ccg/universal-wallet-interop-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.43 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
{
"name": "root",
"private": false,
"scripts": {
"install:ci": "npm install --ignore-scripts && lerna link && lerna bootstrap --since origin/master --include-dependencies",
"postinstall": "lerna bootstrap",
"lint": "lerna run lint --stream",
"test": "lerna run test --stream",
"build": "lerna run build --stream",
"shove": "git add -A; git commit -m 'chore(ci): test'; git push origin master",
"publish:stable:patch": "lerna publish patch --force-publish",
"publish:stable:minor": "lerna publish minor",
"publish:stable:major": "lerna publish major",
"publish:unstable": "lerna publish prerelease --no-verify-access --preid unstable --yes"
},
"husky": {
"hooks": {
"pre-push": "lerna run lint --since origin/master --exclude-dependents"
}
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lerna": "^3.20.2",
"prettier": "^2.6.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@transmute/did-key-ed25519": "^0.2.1-unstable.24",
"@transmute/did-key-x25519": "^0.2.1-unstable.24",
"@transmute/universal-wallet": "^0.4.1"
}
}