-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1009 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1009 Bytes
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
{
"name": "blockotus-organ-admins",
"version": "0.2.4-alpha",
"description": "Tools for BLOCKOTUS Organism. Network Open Standard.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"create": "node dist/enrollAdmin.js",
"add": "node dist/registerUser.js",
"build": "rm -rf dist/* && babel lib/*.js -d dist",
"lint": "eslint ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockotus/admins.git"
},
"author": "Daniel Febrero",
"license": "AGPL-3.0",
"dependencies": {
"core-js": "^3.7.0",
"fabric-ca-client": "^2.2.5",
"fabric-network": "^2.2.5"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.9.0",
"eslint-plugin-flowtype": "^5.2.0",
"husky": "^4.3.0"
},
"resolutions": {
"ini": "^1.3.6"
},
"hooks": {
"pre-push": "yarn run lint"
}
}