-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.68 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
{
"name": "@windingtree/org.id-cli",
"version": "3.2.0",
"description": "The ORGiD command-line utility",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"bin": {
"orgid": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"lint": "npx eslint . --ext .ts",
"lint:fix": "npx eslint . --ext .ts --fix && npx prettier --write .",
"test": "npx jest",
"test:coverage": "npx jest --coverage",
"build": "rm -rf dist && npx webpack --config webpack.config.js && chmod +x ./dist/index.js",
"types": "mkdir -p ./src/schema/types && npx json2ts ./src/schema/project.json > ./src/schema/types/project.d.ts",
"release:beta": "npx standard-version -p -s",
"release:major": "npx standard-version -r major -s",
"release:minor": "npx standard-version -r minor -s",
"release:patch": "npx standard-version -r patch -s"
},
"homepage": "https://github.com/windingtree/org.id-sdk/tree/master/packages/cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/windingtree/org.id-sdk.git"
},
"keywords": [
"windingtree",
"orgid",
"cli",
"utilities",
"typescript"
],
"author": "Winding Tree Developers <[email protected]>",
"contributors": [
"Kostiantyn Smyrnov <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/windingtree/org.id-sdk.git/issues"
},
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.2.0",
"@types/luxon": "^3.0.2",
"@types/node": "^18.11.3",
"@types/prompts": "^2.4.1",
"@types/bn.js": "^5.1.1",
"@types/asn1": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"jest": "^29.2.1",
"json-schema-to-typescript": "^11.0.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"standard-version": "^9.5.0",
"prettier": "^2.7.1",
"@windingtree/org.id-auth": "^1.2.4",
"@windingtree/org.id-core": "^1.2.4",
"@windingtree/org.id-resolver": "^3.2.1",
"@windingtree/org.id-utils": "^1.2.4",
"@windingtree/org.json-schema": "^1.0.2",
"@windingtree/org.json-utils": "^1.2.4",
"arg": "^5.0.2",
"chalk": "^5.1.2",
"crypto-js": "^4.1.1",
"ethers": "^5.7.2",
"form-data": "^4.0.0",
"jsome": "^2.5.0",
"luxon": "^3.0.4",
"prompts": "^2.4.2",
"web3.storage": "^4.4.0",
"axios": "^1.1.3",
"@aws-sdk/client-kms": "^3.202.0",
"asn1.js": "^5.4.1",
"aws-crt": "^1.14.5"
}
}