-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
{
"name": "ilp-settlement-core",
"version": "0.1.1",
"description": "Framework for creating Interledger settlement engines in JS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!dist/**/*.test.js"
],
"scripts": {
"start": "./bin/run.js",
"build": "tsc",
"lint:check": "tslint --project .",
"lint:fix": "tslint --project . --fix",
"format:check": "prettier --check 'src/**/*.ts' tsconfig.json tslint.json",
"format:fix": "prettier --write 'src/**/*.ts' tsconfig.json tslint.json",
"test": "jest",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/settlement-core.git"
},
"author": "Interledger Team <info@interledger.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/interledgerjs/settlement-core/issues"
},
"homepage": "https://github.com/interledgerjs/settlement-core#readme",
"dependencies": {
"@types/express": "^4.17.1",
"@types/ioredis": "^4.0.18",
"axios": "^0.19.0",
"bignumber.js": "^9.0.0",
"body-parser": "^1.19.0",
"debug": "^4.1.1",
"express": "^5.0.0-alpha.7",
"ioredis": "^4.14.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^24.0.18",
"@types/uuid": "^3.4.5",
"codecov": "^3.6.1",
"get-port": "^5.0.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.6.3"
}
}