forked from ipfs-shipyard/js-idm-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 2.93 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "idm-wallet",
"version": "0.4.3",
"description": "The reference implementation of the IDM Wallet in JavaScript",
"main": "lib/index.js",
"module": "es/index.js",
"homepage": "https://github.com/ipfs-shipyard/js-idm-wallet#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-shipyard/js-idm-wallet.git"
},
"keywords": [
"idm",
"wallet",
"js",
"javascript",
"sdk",
"identity",
"did",
"verifiable",
"credentials",
"decentralized"
],
"bugs": {
"url": "https://github.com/ipfs-shipyard/js-idm-wallet/issues"
},
"files": [
"lib",
"es"
],
"scripts": {
"build:commonjs": "BABEL_ENV=commonjs babel src -d lib --ignore \"**/__tests__\" --delete-dir-on-start",
"build:es": "BABEL_ENV=es babel src -d es --ignore \"**/__tests__\" --delete-dir-on-start",
"build": "npm run build:commonjs && npm run build:es",
"test": "jest",
"lint": "eslint .",
"postlint": "cd demo && eslint .",
"prerelease": "npm t && npm run lint && npm run build",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"standard-version": {
"scripts": {
"posttag": "git push --follow-tags origin master"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/__tests__/.*$"
],
"testRegex": "/__tests__/.*\\.test\\.js$",
"testPathIgnorePatterns": [
"/demo/",
"/lib/",
"/es/",
"/node_modules/",
"sessions"
]
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-private-methods": "^7.3.2",
"@commitlint/config-conventional": "^8.0.0",
"babel-jest": "^24.1.0",
"babel-preset-moxy": "^3.0.4",
"commitlint": "^8.0.0",
"eslint": "^5.13.0",
"eslint-config-moxy": "^7.0.1",
"husky": "^2.1.0",
"jest": "^24.5.0",
"lint-staged": "^8.1.4",
"standard-version": "^6.0.1"
},
"dependencies": {
"buffer": "^5.2.1",
"crypto-key-composer": "^0.1.3",
"delay": "^4.2.0",
"did-ipid": "^0.4.0",
"did-uri": "^0.3.0",
"hdkey": "^1.1.1",
"hex-array": "^1.0.0",
"human-crypto-keys": "^0.1.4",
"idm-signatures": "^0.1.0",
"ipfs": "git://github.com/satazor/js-ipfs.git#ipfs-camp",
"level": "^5.0.1",
"lodash": "^4.17.11",
"nanoid": "^2.0.3",
"normalize-value": "^1.0.1",
"orbit-db": "^0.21.3",
"p-defer": "^3.0.0",
"p-map": "^2.1.0",
"p-reduce": "^2.1.0",
"p-series": "^2.1.0",
"p-timeout": "^3.1.0",
"pico-signals": "^1.0.0",
"pify": "^4.0.1",
"scrypt-async": "^2.0.1",
"secp256k1": "^3.7.1",
"zxcvbn": "^4.4.2"
}
}