forked from decentralized-identity/veramo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "daf",
"private": true,
"scripts": {
"build": "lerna run build",
"publish": "lerna publish",
"bootstrap": "lerna bootstrap",
"docs": "ts-node ./scripts/generate-docs.ts && api-documenter markdown -i ./tmpapi -o ./docs/api && rm -rf ./tmpapi",
"test": "jest --config=jest.json",
"test:watch": "jest --config=jest.json --watch",
"daf": "./packages/daf-cli/bin/daf.js",
"build-clean": "rimraf ./packages/*/build ./packages/*/node_modules ./packages/*/tsconfig.tsbuildinfo",
"publish-beta": "yarn build && npx lerna publish --canary premajor --preid beta --pre-dist-tag beta"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@microsoft/api-documenter": "^7.7.12",
"@microsoft/api-extractor": "^7.7.8",
"@types/jest": "^25.1.4",
"codecov": "^3.6.5",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-fetch-mock": "^3.0.3",
"lerna": "^3.20.2",
"lerna-changelog": "^1.0.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.4",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/uport-project/daf.git"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"master",
{
"name": "beta",
"prerelease": true
}
]
},
"dependencies": {
"rimraf": "^3.0.2"
}
}