-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.78 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.78 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
{
"name": "dfuseup",
"version": "1.0.0",
"description": "A cross-platform local testnet manager with dfuse tools and smart contract compiler for EOSIO",
"keywords": [
"eosio",
"eos",
"dfuse",
"testnet",
"compiler",
"smart-contract",
"seeds"
],
"scripts": {
"clean:deps": "rimraf node_modules",
"clean:dist": "rimraf dist",
"clean": "npm run clean:dist && npm run clean:deps",
"build": "npm run clean:dist && tsc -p tsconfig.build.json",
"watch": "npm run clean:dist && tsc -p tsconfig.build.json --watch",
"lint": "tslint --project tsconfig.json --config tslint.json \"src/**/*.ts\" \"test/**/*.ts\"",
"lint-fix": "npm run lint -- --fix",
"test": "mocha -r ts-node/register \"test/*.spec.ts\" --timeout 300000",
"prepare": "npm run build"
},
"author": "Andres Berrios <andres.berrios.j@gmail.com>, Mário Silva <mmcs@outlook.pt>",
"repository": {
"type": "git",
"url": "https://github.com/operanditech/dfuseup.git"
},
"license": "MIT",
"files": [
"dist",
"bin",
"image",
"systemContracts"
],
"main": "dist/index.js",
"bin": {
"dfuseup": "./bin/dfuseup.js"
},
"dependencies": {
"caporal": "^1.3.0",
"dockerator": "mmcs85/dockerator",
"dockerode": "^3.2.0",
"eosjs": "^20.0.3",
"event-stream": "^4.0.1",
"execa": "^4.0.0",
"morpheos": "^2.3.1",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@types/dockerode": "^2.5.28",
"@types/event-stream": "^3.3.34",
"@types/execa": "^2.0.0",
"@types/mocha": "^7.0.2",
"mocha": "^7.1.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.9.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.8.3"
}
}