-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.28 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@ula-aca/aries-cloudagent-interface",
"version": "2.0.0",
"description": "An Aries Cloudagent API Wrapper for JavaScript and NodeJS",
"main": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report",
"prettier": "prettier --list-different '**/*.{md,json,yaml}'",
"prettier:fix": "yarn prettier --write",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "yarn lint --fix",
"commitlint": "commitlint --to HEAD",
"clean": "rm -rf ./lib ./generated",
"compile": "tsc",
"build": "yarn generate-api-client && yarn compile",
"types": "yarn compile --noEmit",
"generate-api-client": "openapi-generator generate -i resources/aca-py-openapi-schema.json -g typescript-axios -o generated/openapi --additional-properties=supportsES6=true,modelPropertyNaming='original' && git apply patches/api.patch",
"get-openapi-spec": "swagger2openapi --outfile resources/aca-py-openapi-schema.json --patch",
"release": "cross-env HUSKY_BYPASS=true semantic-release",
"prepublishOnly": "yarn clean && yarn build",
"update-headers": "copyright-header --fix --copyrightHolder 'ula-aca' --templateId 'apache' --forceModificationYear 'present' --include '(src|tests)'"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"aries",
"cloud-agent",
"did",
"identity",
"blockchain",
"indy"
],
"files": [
"lib"
],
"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/aries-cloudagent-interface-javascript"
},
"bugs": {
"url": "https://github.com/ula-aca/aries-cloudagent-interface-javascript/issues"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@openapitools/openapi-generator-cli": "^1.0.18-5.0.0-beta2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/chai": "^4.2.13",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^8.0.3",
"@types/sinon": "^9.0.0",
"@types/sinon-chai": "^3.2.4",
"@types/ws": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.0.4",
"conventional-changelog-conventionalcommits": "^4.2.3",
"copyright-header": "^0.4.6",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.1.7",
"mocha": "^8.1.3",
"nyc": "^15.0.1",
"prettier": "^2.0.4",
"semantic-release": "^17.0.4",
"sinon": "^9.2.0",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.19",
"swagger2openapi": "^7.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"axios": "^0.20.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}