-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "nem-cli",
"version": "0.5.0",
"author": "Grégory Saive <greg@evias.be>",
"description": "NEM-cli is a collection of command line tools for the NEM Blockchain features using the Terminal",
"keywords": [
"nem",
"blockchain",
"nis",
"api",
"accounts",
"wallets",
"transactions"
],
"repository": {
"type": "git",
"url": "https://github.com/evias/nem-utils.git"
},
"license": "MIT",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-core": "^6.26.0",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"commander": "2.11.0",
"crypto-js": "3.1.9-1",
"nem-sdk": "git://github.com/evias/NEM-sdk.git",
"request": "2.81.0",
"prettyjson": "1.2.1",
"chalk": "^1.1.3",
"easy-table": "1.1.0",
"simple-terminal-menu": "1.1.3"
},
"devDependencies": {
"babel-register": "^6.26.0",
"browserify": "14.1.0",
"chai": "^4.1.2",
"duplexer": "0.1.1",
"mocha": "^2.4.5",
"through": "2.3.8",
"uglify-js": "~1.3.5"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register --recursive tests/",
"build": "babel core/ scripts/ --presets babel-preset-es2015 --out-dir build",
"postinstall": "npm run build",
"postversion": "git push origin master && git push --tags",
"start": "./babel-node nem-cli"
},
"bin": {
"nem-cli": "./babel-node nem-cli"
}
}