forked from RequestNetwork/requestNetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.46 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
{
"name": "@requestnetwork/request-network.js",
"version": "0.1.7",
"description": "A JavaScript library for interacting with the Request Network protocol",
"keywords": [
"requestnetwork.js",
"requestnetwork",
"ethereum"
],
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc && cp -r ./src/artifacts ./dist/src/ && cp ./src/*.json ./dist/src/ && cp -r ./src/lib ./dist/src/",
"lint": "tslint --project tsconfig.json -c tslint.json",
"test": "npm run build && node ./dist/test/test",
"testunit": "npm run build && mocha --timeout 15000 dist/test/unit/**/*.js",
"testdeploy": "npm run build && node ./dist/test/deploy",
"testrpc": "ganache-cli -l 90000000 -p 8545 -m \"candy maple cake sugar pudding cream honey rich smooth crumble sweet treat\"",
"ganache": "ganache-cli -l 90000000 -p 8545 -m \"candy maple cake sugar pudding cream honey rich smooth crumble sweet treat\"",
"prepare": "npm run build"
},
"devDependencies": {
"@types/chai": "^4.0.5",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.53",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"mocha": "^4.0.1",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typings": "^2.1.1"
},
"dependencies": {
"ethereumjs-util": "^5.1.2",
"ipfs-api": "^15.1.0",
"tslib": "^1.8.1",
"web3": "^1.0.0-beta.26"
},
"main": "dist/src/requestNetwork.js",
"files": [
"dist/src"
]
}