forked from EOSIO/demux-js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.54 KB
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
{
"name": "demux-js",
"version": "0.0.1-docs",
"author": {
"name": "Julien Heller",
"url": "https://block.one/"
},
"license": "MIT",
"description": "Deterministic event-sourced state and side effect handling for blockchain applications",
"main": "dist/index.js",
"types": "index.d.ts",
"dependencies": {
"massive": "^5.1.3",
"pg-promise": "^8.4.5",
"request": "^2.87.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"@types/dockerode": "^2.5.5",
"@types/jest": "^23.1.4",
"@types/massive": "^4.6.1",
"@types/node": "^10.5.1",
"@types/pg-promise": "^5.4.3",
"@types/request-promise-native": "^1.0.15",
"dockerode": "^2.5.5",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^22.4.3",
"ts-jest": "^23.0.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typedoc": "^0.11.1",
"typescript": "^2.9.2"
},
"scripts": {
"compile": "tsc",
"watch": "tsc -w",
"example": "./run-example.sh",
"lint": "tslint -c tslint.json src/**/*.ts",
"test": "jest",
"build-docs": "./build-docs.sh"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(tsx?)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testRegex": "(/src/.*(\\.|/)(test|spec))\\.(jsx?|tsx?)$"
}
}