-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
68 lines (68 loc) · 1.81 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
{
"name": "demux",
"version": "5.0.2",
"author": {
"name": "block.one",
"url": "https://block.one/"
},
"contributors": [
"Julien Heller",
"Jeffrey Smith"
],
"license": "MIT",
"description": "Deterministic event-sourced state and side effect handling for blockchain applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/EOSIO/demux-js",
"devDependencies": {
"@blockone/tslint-config-blockone": "^3.0.0",
"@types/bunyan": "^1.8.5",
"@types/express": "^4.16.0",
"@types/jest": "^24.0.25",
"@types/node": "^10.5.1",
"@types/request-promise-native": "^1.0.15",
"@types/supertest": "^2.0.7",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^24.9.0",
"release-it": "^12.4.3",
"supertest": "^3.4.1",
"ts-jest": "^24.2.0",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typedoc": "^0.15.6",
"typescript": "~3.5.3"
},
"dependencies": {
"bunyan": "1.8.12",
"express": "4.16.4"
},
"scripts": {
"build": "rm -rf dist/* && tsc",
"build-docs": "rm -rf docs && ./scripts/build-docs.sh",
"build-all": "yarn build && yarn build-docs",
"example": "./scripts/run-example.sh",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest --detectOpenHandles --maxWorkers=2 --forceExit",
"current-version": "echo $npm_package_version",
"prepublishOnly": "yarn build"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/src/.*(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testEnvironment": "node"
}
}