forked from uport-project/ethr-did
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.19 KB
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
{
"name": "ethr-did",
"version": "1.1.0",
"description": "Create and manage DID documents for ethereum addresses",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"umd:main": "lib/index.umd.js",
"source": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/uport-project/ethr-did.git"
},
"files": [
"lib",
"src",
"LICENSE",
"babel-preset.js",
".babelrc"
],
"author": "Pelle Braendgaard <pelle.braendgaard@consensys.net>",
"license": "Apache-2.0",
"scripts": {
"format": "prettier-standard 'src/**/*.js'",
"test": "./node_modules/.bin/standard && ./node_modules/.bin/jest",
"test:ci": "./node_modules/.bin/standard && ./node_modules/.bin/jest -u --coverage",
"build:js": "./node_modules/.bin/microbundle",
"build": "npm run format && npm run build:js && npm run test",
"prepare": "npm run build"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testEnvironment": "node"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babel-jest": "^24.9.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethr-did-registry": "0.0.3",
"ganache-cli": "^6.7.0",
"jest": "^24.9.0",
"microbundle": "^0.11.0",
"prettier-standard": "^9.1.1",
"regenerator-runtime": "^0.11.1",
"standard": "^12.0.1",
"truffle-contract": "^3.0.8",
"web3": "1.0.0-beta.34"
},
"dependencies": {
"@babel/runtime": "^7.6.2",
"buffer": "^5.4.3",
"did-jwt": "^3.0.0",
"did-resolver": "^1.0.0",
"ethjs-contract": "^0.1.9",
"ethjs-provider-http": "^0.1.6",
"ethjs-query": "^0.3.8",
"ethr-did-resolver": "^1.0.2"
},
"standard": {
"ignore": [
"lib/**"
],
"globals": [
"it",
"describe",
"expect",
"jest",
"beforeAll",
"beforeEach",
"afterAll",
"afterEach"
]
}
}