-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "parity-exporter",
"version": "1.0.0",
"description": "Parity exporter for Prometheus",
"main": "build/index.js",
"types": "build/src/index.d.ts",
"keywords": [],
"bugs": {
"url": "https://github.com/adinhodovic/parity-exporter/issues"
},
"license": "MIT",
"contributors": [
"Adin Hodovic [email protected]"
],
"repository": {
"type": "git",
"url": "https://github.com/adinhodovic/parity-exporter.git"
},
"scripts": {
"lint-format": "prettier --list-different '**/**.ts'",
"lint": "tslint -p tsconfig.json",
"test": "mocha test/**/*.ts",
"build": "tsc --build tsconfig.json",
"watch:build": "tsc --build tsconfig.json --watch",
"watch:server": "nodemon './build/index.js' --watch './build'",
"start": "ts-node './bin/start_server.ts'"
},
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts"
],
"dependencies": {
"axios": "^0.18.0",
"express": "^4.16.4",
"js-yaml": "^3.13.1",
"mocha": "^5.2.0",
"prettier": "^1.15.3",
"prom-client": "^11.2.1",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"winston": "^3.0.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/js-yaml": "^3.11.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"chai": "^4.2.0",
"nodemon": "^1.18.9",
"ts-node": "^7.0.1",
"tslint-microsoft-contrib": "^6.0.0"
},
"engines": {
"node": ">=10.4.1"
},
"private": true
}