-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.97 KB
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
{
"name": "@bitbeat/core",
"version": "0.0.21",
"private": false,
"description": "The core package of bitbeat.",
"keywords": [
"bitbeat",
"framework",
"modular",
"backend",
"minimal"
],
"homepage": "https://github.com/bitbeatjs/core",
"bugs": {
"url": "https://github.com/bitbeatjs/core/issues"
},
"repository": "bitbeatjs/core",
"license": "MIT",
"author": "Oliver Freudrich <info@oliverfreudrich.com> (https://oliverfreudrich.com)",
"main": "index.js",
"typings": "./index.d.ts",
"bin": "./bin/index.js",
"scripts": {
"analyse:dependencies": "npx bundle-phobia -p package.json",
"analyse:licenses": "yarn licenses list",
"build": "npx gulp",
"dev": "node --inspect bin/index.js start",
"lint": "eslint .",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"start": "npx ./bin/index.js start",
"debug": "npx ./bin/index.js debug -l",
"test": "npm run test:local && npm run test:production",
"test:local": "ava --config ava.local.config.js",
"test:production": "ava --config ava.production.config.js",
"test:watch": "ava --watch",
"watch": "npx gulp watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"npm run lint",
"npm run test",
"prettier --write"
],
"*.{js,css,md}": [
"npm run test",
"prettier --write"
]
},
"dependencies": {
"chokidar": "^3.4.3",
"commander": "^6.2.0",
"debug": "^4.2.0",
"lodash": "^4.17.20",
"ms": "^2.1.2",
"node-cron": "^2.0.3",
"pino": "^6.7.0",
"pino-pretty": "^4.3.0",
"please-upgrade-node": "^3.2.0",
"promise-parallel-throttle": "^3.3.0",
"semver": "^7.3.2",
"state-subscriber": "^0.1.3"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.165",
"@types/ms": "^0.7.31",
"@types/node": "^14.14.7",
"@types/node-cron": "^2.0.3",
"@types/pino": "^6.3.3",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"ava": "^3.13.0",
"bundle-phobia-cli": "^0.14.10",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"gulp-changed-in-place": "^2.3.0",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^6.0.0",
"gulp-terser": "^1.4.1",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"merge-stream": "^2.0.0",
"prettier": "2.1.2",
"type-fest": "^0.18.1",
"typescript": "^4.0.5"
},
"engines": {
"node": ">=10"
}
}