forked from symbol/symbol-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.4 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
56
57
58
59
60
61
{
"name": "nem2-cli",
"version": "0.9.7",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "npm run build",
"test": "mocha --ui bdd --recursive ./build/test",
"build": "rm -rf build/ && tsc",
"test:cov": "nyc --reporter=lcov --reporter=text-lcov npm t && nyc report --reporter=text-lcov",
"test:coveralls": "npm run test:cov | coveralls"
},
"bin": {
"nem2-cli": "./bin/nem2-cli"
},
"contributors": [
{
"name": "Aleix",
"email": "[email protected]"
},
{
"name": "Guillem",
"email": "[email protected]"
}
],
"bugs": "https://github.com/nemtech/nem2-cli/issues",
"repository": {
"type": "git",
"url": "https://github.com/nemtech/nem2-cli.git"
},
"license": "APACHE-2.0",
"dependencies": {
"@types/cli-spinner": "^0.2.0",
"@types/node": "^9.3.0",
"@types/readline-sync": "^1.4.3",
"chalk": "^2.3.0",
"cli-spinner": "^0.2.7",
"clime": "^0.5.9",
"nem2-sdk": "^0.9.1",
"path": "^0.12.7",
"readline-sync": "^1.4.9",
"rxjs": "^5.5.6"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.44",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"ts-node": "^5.0.1",
"ts-mockito": "^2.2.8",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"nyc": {
"exclude": [
"**/*.spec.js"
]
}
}