-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
90 lines (90 loc) · 2.67 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "nem-library",
"version": "0.11.0",
"description": "Reactive Library for NEM",
"scripts": {
"pretest": "npm run build",
"test": "mocha --ui bdd --recursive ./dist/test ./dist/integration_test --timeout 60000",
"test:e2e": "mocha --ui bdd --recursive ./dist/e2e --timeout 60000",
"test:int": "mocha --ui bdd --recursive ./dist/integration_test --timeout 10000",
"test:unit": "mocha --ui bdd --recursive ./dist/test",
"test:all": "npm run build && mocha --ui bdd --recursive ./dist/test ./dist/integration_test ./dist/e2e --timeout 90000",
"test:cov": "nyc npm run test:all && nyc report --reporter=text-lcov --timeout 90000 | coveralls",
"build": "rm -rf dist && tsc && npm run copyjson && npm run copyvendor",
"gen:docs": "typedoc --out ts-docs/ src/",
"copyjson": "cp -r test/infrastructure/account/responses/ dist/test/infrastructure/account/responses/",
"copyvendor": "cp -r src/vendor/ dist/src/vendor/"
},
"keywords": [
"NEM",
"API",
"RX"
],
"license": "MIT",
"author": "Aleix Morgadas <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/aleixmorgadas/nem-library-ts"
},
"bugs": {
"url": "https://github.com/aleixmorgadas/nem-library-ts/issues",
"email": "[email protected]"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/nock": "^8.2.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"mocha": "^3.5.3",
"mocha-lcov-reporter": "^1.3.0",
"mocha-typescript": "^1.1.11",
"nock": "^9.0.24",
"nyc": "^11.2.1",
"ts-node": "^3.3.0",
"typedoc": "^0.8.0",
"typescript": "^2.5.3"
},
"dependencies": {
"@stomp/stompjs": "^3.1.1",
"@types/js-base64": "^2.1.5",
"@types/lodash": "^4.14.78",
"@types/node": "^8.0.46",
"@types/request": "^2.0.6",
"@types/request-promise-native": "^1.0.8",
"@types/sockjs-client": "^1.0.32",
"@types/utf8": "^2.1.6",
"crypto-js": "^3.1.9-1",
"fs.realpath": "^1.0.0",
"get-random-values": "^1.2.0",
"js-base64": "^2.3.2",
"js-joda": "^1.6.1",
"lodash": "^4.17.4",
"nem-sdk": "1.5.1",
"request": "^2.83.0",
"request-promise-core": "^1.1.1",
"request-promise-native": "^1.0.5",
"rxjs": "^5.5.0",
"sockjs-client": "^1.1.4",
"tweetnacl": "^1.0.0",
"typedocs": "^0.6.3",
"utf8": "^2.1.2",
"websocket": "^1.0.25"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"LICENSE",
"History.md",
"README.md",
"dist/src/",
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map"
],
"nyc": {
"exclude": [
"**/*.spec.js"
]
}
}