This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.63 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
{
"name": "anechka",
"version": "3.0.5",
"description": "",
"main": "index.js",
"scripts": {
"init": "node --use-strict bin/init.js | ./node_modules/.bin/bunyan -o short",
"start": "node --use-strict index.js | ./node_modules/.bin/bunyan -o short",
"test": "mocha --use_strict --exit",
"lint": "eslint .",
"check_coverage": "nyc check-coverage --lines 70 --functions 80 --branches 50",
"coverage": "nyc npm test && npm run check_coverage",
"coverage-report": "npm run coverage && nyc report --reporter=lcov"
},
"repository": {
"type": "git",
"url": "[email protected]:jehy/anechka.git"
},
"author": "Jehy <[email protected]>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.2",
"bunyan": "1.8.14",
"config": "^3.3.2",
"fs-extra": "9.0.1",
"googleapis": "65.0.0",
"moment": "2.29.4",
"slack": "11.0.2",
"stringify-clone": "2.0.3"
},
"devDependencies": {
"chai": "4.2.0",
"debug": "4.3.1",
"deep-freeze": "0.0.1",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-standard": "4.1.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.2",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"rewire": "5.0.0",
"sinon": "^9.2.1"
},
"engines": {
"node": ">=8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": "eslint"
},
"engineStrict": true
}