This repository was archived by the owner on Feb 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.79 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.79 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
{
"name": "liqdev",
"version": "0.2.0",
"description": "Swiss army knife for Liquidity development.",
"bin": {
"liqdev": "dist/liqdev.js",
"liqdev-baker": "lib/baker.sh",
"liqdev-client": "lib/client.sh",
"liqdev-deploy": "lib/deploy.sh",
"liqdev-kill": "lib/kill.sh",
"liqdev-setup": "lib/setup.sh"
},
"scripts": {
"build": "rm -rf dist && ./node_modules/.bin/tsc && chmod +x dist/liqdev.js && chmod +x lib/*",
"clean": "rm -rf dist",
"lint": "tslint --project tsconfig.json --format stylish",
"test": "echo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1protocol/liqdev.git"
},
"keywords": [
"liquidity",
"tezos",
"contract"
],
"author": "Vest",
"license": "MIT",
"bugs": {
"url": "https://github.com/1protocol/liqdev/issues"
},
"homepage": "https://github.com/1protocol/liqdev#readme",
"devDependencies": {
"@types/bip39": "^2.4.0",
"@types/chokidar": "^1.7.5",
"@types/colors": "^1.2.1",
"@types/diff": "^3.5.1",
"@types/find": "^0.2.1",
"@types/fs-extra": "^5.0.4",
"@types/lodash": "^4.14.116",
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.0",
"@types/seedrandom": "^2.4.27",
"@types/shelljs": "^0.8.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^7.1.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^3.0.1"
},
"dependencies": {
"chokidar": "^2.0.4",
"colors": "^1.3.1",
"commander": "^2.17.1",
"diff": "^3.5.0",
"eztz": "git+https://github.com/1protocol/eztz.git",
"fs-extra": "^7.0.0",
"glob": "^7.1.2",
"glob-promise": "^3.4.0",
"immutable": "^3.8.2",
"mocha": "^5.2.0",
"nano-time": "^1.0.0",
"shelljs": "^0.8.2",
"source-map-support": "^0.5.8",
"tslib": "^1.9.3"
}
}