-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "demux-js-iost",
"version": "2.0.0",
"description": "Demux-js Action Reader implementations for IOST blockchains",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/liebi-official/demux-js-iost",
"author": {
"name": "Edwin Wang",
"url": "https://liebi.com"
},
"license": "MIT",
"devDependencies": {
"@blockone/tslint-config-blockone": "^2.0.0",
"@types/bunyan": "^1.8.5",
"@types/jest": "23.3.13",
"@types/node": "^10.5.1",
"@types/node-fetch": "^2.1.6",
"@types/request-promise-native": "^1.0.15",
"jest": "23.6.0",
"ts-jest": "23.10.5",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typedoc": "^0.11.1",
"typescript": "^2.9.2"
},
"dependencies": {
"@types/express": "^4.16.1",
"axios": "^0.21.1",
"bunyan": "^1.8.12",
"node-fetch": "^2.3.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.5"
},
"resolutions": {
"*/merge": "1.2.1"
},
"scripts": {
"build": "rm -rf dist/* && tsc",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest",
"build-docs": "./scripts/build-docs.sh",
"current-version": "echo $npm_package_version",
"prepublishOnly": "yarn build"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"transform": {
"^.+\\.(tsx?)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testRegex": "(/src/.*(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testEnvironment": "node"
}
}