This repository has been 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
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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
{
"name": "eztz-simple",
"version": "0.0.1",
"description": "A simple CLI for sending Tezos transactions.",
"main": "dist/src/eztz-simple.js",
"private": true,
"scripts": {
"build": "rm -rf dist lib && ./node_modules/.bin/tsc && chmod +x ./dist/**/*.js && mkdir lib && ./node_modules/.bin/pkg dist/src/eztz-simple.js -t host --options no-deprecation --out-path ./lib",
"clean": "rm -rf dist",
"lint": "./node_modules/.bin/tslint --project tsconfig.json --format stylish",
"start": "./dist/src/eztz-simple.js",
"test": "./node_modules/.bin/mocha -r ts-node/register -r tsconfig-paths/register test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1protocol/eztz-simple.git"
},
"keywords": [
"eztz",
"tezos",
"CLI"
],
"author": "Vest",
"bugs": {
"url": "https://github.com/1protocol/eztz-simple/issues"
},
"homepage": "https://github.com/1protocol/eztz-simple#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.11",
"@types/promise-timeout": "^1.3.0",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"pkg": "^4.3.5",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.7.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^7.1.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^3.2.1"
},
"dependencies": {
"colors": "^1.3.2",
"commander": "^2.19.0",
"eztz.js": "git://github.com/1protocol/eztz.git",
"module-alias": "^2.1.0",
"promise-timeout": "^1.3.0",
"source-map-support": "^0.5.8",
"tslib": "^1.9.3"
},
"_moduleAliases": {
"@src": "dist/src"
}
}