-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·101 lines (101 loc) · 2.89 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
94
95
96
97
98
99
100
101
{
"name": "btcnvtgrabber",
"version": "1.0.0",
"description": "Fetches the value of BTC kalichkin nvt",
"scripts": {
"lint": "eslint src/**/*.ts",
"doc": "doxdox 'src/**/*.ts' --layout markdown --output DOCUMENTATION.md",
"test": "nyc mocha -r ts-node/register test/**/test__*.ts",
"watch": "mocha -r ts-node/register test/**/test__*.ts --watch",
"build": "rimraf build && npm run doc && npm run lint && npm run test && tsc -p .",
"coverage": "nyc --reporter=lcov --reporter=text-lcov mocha -r ts-node/register test/**/test__*.ts && open ./coverage/lcov-report/index.html",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"sec": "synk test",
"debug": "nodemon --legacy-watch --watch ./build --inspect=0.0.0.0:5858 --nolazy ./build/server.js",
"docker-build": "docker build -t dev .",
"docker-run": "docker run --name dev -p 3000:3000 -d dev && open localhost:",
"docker-stop": "docker stop dev",
"docker-debug": "docker-compose up",
"local": "npm run build && npm start",
"start": "node ./build/server.js",
"fastLocal": "rimraf build && tsc -p . && npm start",
"seed": "tsc -p . && node build/seeder.js"
},
"main": "./build/server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/elyx0/"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true,
"check-coverage": true,
"per-file": false,
"lines": 70,
"statements": 70,
"functions": 70,
"branches": 70
},
"preferGlobal": true,
"engines": {
"node": ">=8"
},
"author": "Elyx0 - Eric Destaing",
"license": "ISC",
"devDependencies": {
"@types/chai": "4.1.7",
"@types/express": "^4.16.1",
"@types/mailgun-js": "^0.16.3",
"@types/mocha": "^5.2.6",
"@types/node": "11.11.6",
"@types/puppeteer": "^1.12.3",
"@types/sinon": "^7.0.11",
"@types/sqlite3": "^3.1.5",
"@typescript-eslint/eslint-plugin": "1.6.0",
"@typescript-eslint/parser": "1.6.0",
"assert-diff": "2.0.3",
"chai": "4.2.0",
"chai-diff": "1.0.1",
"coveralls": "^3.0.3",
"doxdox": "^3.0.0",
"eslint": "5.15.1",
"husky": "^1.3.1",
"mocha": "6.0.2",
"nodemon": "1.18.10",
"nyc": "13.3.0",
"rimraf": "2.6.3",
"should": "13.2.3",
"sinon": "7.2.7",
"sinon-chai": "3.3.0",
"synk": "0.0.2",
"ts-node": "8.0.3",
"typescript": "3.3.4000"
},
"dependencies": {
"@types/sharp": "^0.22.1",
"body-parser": "1.18.3",
"dotenv": "7.0.0",
"express": "4.16.4",
"mailgun-js": "^0.22.0",
"puppeteer": "^1.14.0",
"sharp": "^0.22.0",
"sqlite3": "^4.0.6",
"tesseract.js": "^1.0.14",
"tesseract.ts": "^1.1.1"
}
}