-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.15 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 4.15 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "root",
"private": true,
"description": "Aries Cloudagent plugins for the Universal Ledger Agent",
"workspaces": [
"packages/*"
],
"scripts": {
"test:unit": "cross-env TS_NODE_PROJECT='config/tsconfig.test.json' nyc mocha 'packages/**/tests/**/*.spec.ts'",
"test:unit:raw": "cross-env TS_NODE_PROJECT='config/tsconfig.test.json' mocha 'packages/**/tests/**/*.spec.ts'",
"test:integration": "cross-env TS_NODE_PROJECT='config/tsconfig.test.json' mocha --timeout 100000 'tests/integration/**/*.spec.ts'",
"test:stryker": "cross-env TS_NODE_PROJECT='config/tsconfig.test.json' stryker run",
"coverage": "nyc report",
"prettier": "prettier --list-different '**/*.{md,json}'",
"prettier:fix": "yarn prettier --write",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "yarn lint --fix",
"commitlint": "commitlint --to HEAD",
"build": "tsc --build config/tsconfig.build.json",
"build:watch": "yarn build --watch",
"build:clean": "yarn build --clean",
"dev": "tsc --build tsconfig.json --watch",
"types": "tsc --build tsconfig.json --force",
"update:headers": "copyright-header --fix --copyrightHolder 'ula-aca' --templateId 'apache' --forceModificationYear 'present' --include '.*\\.ts'",
"update:tsconfig.json": "ts-node scripts/update-package-tsconfig.ts",
"release": "cross-env HUSKY_BYPASS=true lerna publish --yes",
"example": "cross-env TS_NODE_PROJECT='config/tsconfig.test.json' ts-node -r tsconfig-paths/register -r dotenv/config examples/run.ts"
},
"keywords": [
"aries",
"cloudagent",
"ula",
"universal-ledger-agent",
"ssi",
"did",
"identity",
"blockchain",
"indy"
],
"contributors": [
"Timo Glastra <timo@glastra.me>",
"Karim Stekelenburg <karim.stekelenburg@me.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ula-aca/ula-aca-plugins"
},
"bugs": {
"url": "https://github.com/ula-aca/ula-aca-plugins/issues"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/config-lerna-scopes": "^8.3.4",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@stryker-mutator/core": "^2.5.0",
"@stryker-mutator/html-reporter": "^2.5.0",
"@stryker-mutator/mocha-runner": "^2.5.0",
"@stryker-mutator/typescript": "^3.0.0",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/faker": "^4.1.9",
"@types/mocha": "^5.2.7",
"@types/prettier": "^1.19.0",
"@types/sinon": "^9.0.0",
"@types/sinon-chai": "^3.2.4",
"@types/ws": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"@ula-aca/aries-cloudagent-interface": "^1.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.0.3",
"conventional-changelog-conventionalcommits": "^4.2.3",
"copyright-header": "^0.4.6",
"cross-env": "^7.0.0",
"cz-conventional-changelog": "^3.0.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"faker": "^4.1.0",
"husky": "^4.2.5",
"lerna": "^3.20.2",
"lint-staged": "^10.0.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"sinon": "^8.1.0",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.16",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"typescript": "3.8.3",
"universal-ledger-agent": "^0.1.2"
},
"dependencies": {
"@ula-aca/connection": "*",
"@ula-aca/core": "*",
"@ula-aca/credential": "*",
"@ula-aca/credential-definition": "*",
"@ula-aca/issue-credential": "*",
"@ula-aca/ledger": "*",
"@ula-aca/present-proof": "*",
"@ula-aca/schema": "*",
"@ula-aca/test-utils": "*",
"@ula-aca/wallet": "*",
"@ula-aca/webhook-event-models": "*",
"@ula-aca/webhook-relay-event-router": "*"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}