forked from decentralized-identity/veramo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.73 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
71
72
73
74
75
76
{
"name": "veramo",
"private": true,
"scripts": {
"build": "lerna run build && yarn build:schema-api",
"bootstrap": "lerna bootstrap",
"build:schema-api": "lerna run extract-api && lerna run generate-plugin-schema",
"lint": "echo \"linting not yet enabled\"",
"test:integration-build": "yarn test:integration-prepare && yarn test:integration-pretty",
"test:integration-prepare": "ts-node --project packages/tsconfig.settings.json ./scripts/prepare-integration-tests.ts",
"test:integration-pretty": "prettier --write __tests__/shared/documentationExamples.ts",
"test:integration": "yarn test:integration-build && yarn test:ci",
"test:ci": "jest --config=jest.json --maxWorkers=2",
"test": "jest --config=jest.json --coverage=false",
"test:watch": "yarn test --watch --verbose",
"veramo": "./packages/cli/bin/veramo.js",
"prettier": "prettier --write '{packages,__tests__, !build}/**/*.{ts,js,json,md,yml}'",
"build-clean": "rimraf ./packages/*/build ./packages/*/node_modules ./packages/*/tsconfig.tsbuildinfo && jest --clearCache",
"publish:latest": "lerna publish --conventional-commits --include-merged-tags --create-release github --yes --dist-tag latest --registry https://registry.npmjs.org/:_authToken=${NPM_TOKEN}",
"publish:next": "lerna publish --conventional-prerelease --force-publish --canary --no-git-tag-version --include-merged-tags --preid next --pre-dist-tag next --yes --registry https://registry.npmjs.org/:_authToken=${NPM_TOKEN}"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"@microsoft/api-documenter": "7.13.5",
"@microsoft/api-extractor": "7.15.0",
"@microsoft/api-extractor-model": "7.13.0",
"@types/jest": "26.0.23",
"codecov": "3.8.1",
"cross-fetch": "3.1.4",
"husky": "6.0.0",
"jest": "26.6.3",
"jest-fetch-mock": "3.0.3",
"json-schema": "0.3.0",
"lerna": "4.0.0",
"lerna-changelog": "1.0.1",
"oas-resolver": "2.5.4",
"openapi-types": "8.0.0",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"rimraf": "3.0.2",
"semantic-release": "17.4.2",
"ts-jest": "26.5.5",
"ts-json-schema-generator": "0.91.0",
"ts-node": "9.1.1",
"typescript": "4.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/uport-project/veramo.git"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"master",
{
"name": "beta",
"prerelease": true
}
]
},
"dependencies": {
"rimraf": "3.0.2"
}
}