This repository has been archived by the owner on Apr 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
69 lines (69 loc) · 1.72 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
{
"name": "uport-registry",
"version": "5.1.0",
"description": "uPort Registry contracts and JS middleware",
"main": "build/contracts/UportRegistry.json",
"repository": {
"type": "git",
"url": "https://github.com/ConsenSys/uport-registry.git"
},
"homepage": "https://github.com/ConsenSys/uport-registry",
"bugs": {
"url": "https://github.com/ConsenSys/uport-registry/issues"
},
"keywords": [
"uPort"
],
"author": "ConsenSys",
"license": "Apache-2",
"devDependencies": {
"ethereumjs-testrpc": "^3.0.3",
"mocha": "^2.4.5",
"standard": "^9.0.2",
"truffle": "^3.2.1",
"truffle-contract": "^2.0.0",
"web3": "^0.16.0"
},
"scripts": {
"build": "node_modules/.bin/browserify -t babelify src/uportregistry.js -s uportRegistry -o dist/uportregistry.js",
"compile-contract": "./node_modules/.bin/truffle compile",
"lint": "./node_modules/.bin/standard",
"test": "node_modules/.bin/mocha --compilers js:babel-core/register --reporter spec"
},
"dependencies": {
},
"contributors": [
{
"name": "Christian Lundkvist",
"email": "christian.lundkvist@consensys.net",
"url": "http://consensys.net/"
},
{
"name": "Joel Torstensson",
"email": "joel.torstensson@consensys.net",
"url": "http://consensys.net/"
},
{
"name": "Pelle Braendgaard",
"email": "pelle.braendgaard@consensys.net",
"url": "http://consensys.net/"
},
{
"name": "Zac Mitton",
"email": "zac.mitton@consensys.net",
"url": "http://zacmitton.com/"
}
],
"standard": {
"ignore": [
"dist/**",
"lib/**"
],
"globals": [
"artifacts",
"describe",
"it",
"before"
]
}
}