-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.3 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
{
"name": "blockchain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha test/**/*.js --reporter mochawesome --reporter-options reportDir=TestResults"
},
"author": "",
"license": "ISC",
"dependencies": {
"@reactivex/rxjs": "^5.5.8",
"ajv": "^6.4.0",
"ajv-merge-patch": "^3.0.0",
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"express-validator": "^5.1.2",
"immutable": "^3.8.2",
"ld-jsonstream": "^1.0.1",
"leveldown": "^3.0.0",
"levelup": "^2.0.2",
"lodash": "^4.17.5",
"merkle-lib": "^2.0.10",
"minimist": "^1.2.0",
"ndjson": "^1.5.0",
"protobufjs": "^6.8.6",
"rxjs": "^5.5.8",
"secp256k1": "^3.5.0",
"tslint": "^5.9.1",
"typescript": "^2.8.1",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.0.5",
"@types/mocha": "^2.2.44",
"chai": "^4.1.2",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-typescript": "^3.2.3",
"mocha": "^4.0.1",
"mochawesome": "^2.3.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}