-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.47 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ilp-account-service",
"version": "0.0.1",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"ilp-account-service": "./build/index.js"
},
"scripts": {
"start": "node build/index.js",
"clean": "rm -Rf .nyc_output && rm -Rf coverage && rm -Rf build ",
"build": "npm run clean && npm run schema-to-tsd && npm run compile-ts && npm run copy-schemas",
"copy-schemas": "mkdir -p ./build/schemas && cp ./src/schemas/*.json ./build/schemas",
"compile-ts": "tsc --project .",
"prepare": "npm run build",
"pretest": "npm run build",
"schema-to-tsd": "node scripts/build_schema_types",
"test": "nyc mocha --require source-map-support/register --exit test",
"lint": "tslint --project .",
"codecov": "codecov",
"doc": "typedoc --options typedoc.js src"
},
"files": [
"build/**/*.js",
"build/**/*.js.map",
"build/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/ilp-account-service.git"
},
"keywords": [
"interledger",
"account service"
],
"author": "Adrian Hope-Bailie <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/interledgerjs/ilp-account-service/issues"
},
"homepage": "https://github.com/interledgerjs/ilp-account-service#readme",
"dependencies": {
"bignumber.js": "^8.0.1",
"debug": "^3.1.0",
"ilp-logger": "^1.1.2",
"ilp-packet": "^3.0.6",
"ilp-store": "^1.0.1",
"prom-client": "^11.2.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/debug": "^0.0.31",
"@types/long": "^4.0.0",
"@types/mocha": "^5.2.5",
"@types/mock-require": "^2.0.0",
"@types/node": "^10.12.10",
"@types/sinon": "^5.0.7",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"gh-pages": "^2.0.1",
"ilp-protocol-ildcp": "^2.0.0",
"json-schema-to-typescript": "^6.0.2",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"mock-require": "^3.0.2",
"nyc": "^13.1.0",
"sinon": "^7.1.1",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.1.6"
},
"nyc": {
"check-coverage": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true
}
}