-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.59 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
{
"name": "demux-bitshares",
"version": "1.1.0",
"description": "Demux-js Action Reader implementations for Bitshares blockchain",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/Zapata/demux-js-bitshares",
"author": {
"name": "Zapata"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.1.4",
"@types/node": "^10.5.1",
"@types/request-promise-native": "^1.0.15",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^22.4.3",
"release-it": "^7.5.0",
"ts-jest": "^23.0.0",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typedoc": "^0.11.1",
"typescript": "^2.9.2"
},
"dependencies": {
"@types/elasticsearch": "^5.0.26",
"demux": "^1.0.3",
"elasticsearch": "^15.1.1",
"request": "^2.87.0",
"request-promise-native": "^1.0.5"
},
"peerDependencies": {
"demux": "^1.0.3"
},
"scripts": {
"release": "release-it",
"compile": "tsc",
"watch": "tsc -w",
"lint": "tslint -c tslint.json {src,test}/**/*.ts",
"test": "jest",
"build-docs": "./build-docs.sh"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(tsx?)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testRegex": "(/test/.*(\\.|/)(test|spec))\\.tsx?$",
"testEnvironment": "node",
"moduleNameMapper": {
"elasticsearch": "<rootDir>/test/helper/ElasticSearchMock.ts"
}
}
}