forked from uport-project/uport-identity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.56 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
{
"name": "uport-identity",
"version": "1.2.0",
"description": "uPort Contracts for identity",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "./node_modules/.bin/truffle compile",
"_deploy": "./node_modules/.bin/truffle migrate --network ",
"deploy-mainnet": "npm run _deploy mainnet",
"deploy-infuranet": "npm run _deploy infuranet",
"deploy-ropsten": "npm run _deploy ropsten",
"deploy-rinkeby": "npm run _deploy rinkeby",
"deploy-kovan": "npm run _deploy kovan",
"deploy-local": "npm run _deploy local",
"generate-readme": "./scripts/generate-readme.js",
"test": "./node_modules/.bin/truffle test --network in_memory",
"lint": "./node_modules/.bin/solium -d contracts",
"diagrams": "bash scripts/make-diagrams.bash"
},
"license": "Apache-2",
"repository": {
"type": "git",
"url": "git+https://github.com/uport-project/uport-identity.git"
},
"bugs": {
"url": "https://github.com/uport-project/uport-identity/issues"
},
"homepage": "https://github.com/uport-project/uport-identity#readme",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"bluebird": "^3.5.0",
"eth-lightwallet": "^2.5.6",
"eth-signer": "^0.2.2",
"ethereumjs-testrpc": "^3.0.3",
"ethjs-abi": "^0.1.9",
"node-plantuml": "^0.5.0",
"solidity-sha3": "^0.4.1",
"solium": "^0.5.3",
"truffle": "3.4.5",
"truffle-contract": "^1.1.10",
"truffle-hdwallet-provider": "0.0.3"
}
}