-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.2 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
{
"name": "idm-client",
"version": "0.3.1",
"description": "The reference implementation of the IDM Client in JavaScript",
"main": "lib/index.js",
"module": "es/index.js",
"homepage": "https://github.com/ipfs-shipyard/js-idm-client#readme",
"author": "André Cruz <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-shipyard/js-idm-client.git"
},
"keywords": [
"idm",
"client",
"dapps",
"authentication",
"authenticate",
"sign",
"signing",
"sso"
],
"bugs": {
"url": "https://github.com/ipfs-shipyard/js-idm-client/issues"
},
"files": [
"lib",
"es"
],
"scripts": {
"build:commonjs": "BABEL_ENV=commonjs babel src -d lib --delete-dir-on-start",
"build:es": "BABEL_ENV=es babel src -d es --delete-dir-on-start",
"build": "npm run build:commonjs && npm run build:es",
"test": "jest --coverage",
"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"
]
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-private-methods": "^7.4.4",
"@commitlint/config-conventional": "^8.0.0",
"babel-jest": "^24.5.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.1.0",
"lint-staged": "^8.1.4",
"standard-version": "^6.0.1"
},
"dependencies": {
"did-resolver": "0.0.6",
"idm-signatures": "^0.1.0",
"ipfs": "git://github.com/satazor/js-ipfs.git#ipfs-camp",
"ipid-did-resolver": "^0.1.2",
"level": "^5.0.1",
"lodash": "^4.17.11",
"pico-signals": "^1.0.0",
"pify": "^4.0.1"
}
}