-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 1.99 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
{
"name": "microauth-vkontakte",
"version": "0.0.0-development",
"license": "MIT",
"description": "Vkontakte OAuth for micro.",
"author": "Cody Brunner <rockchalkwushock@icloud.com> (https://codybrunner.me)",
"homepage": "https://github.com/microauth/microauth-vkontakte#readme",
"repository": "https://github.com/microauth/microauth-vkontakte.git",
"bugs": "https://github.com/microauth/microauth-vkontakte/issues",
"main": "src/index.js",
"files": [
"src"
],
"keywords": [
"micro",
"oauth2",
"vkontakte"
],
"scripts": {
"cm": "nps commit",
"start": "nps",
"test": "nps test"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"env": {
"jest": true,
"node": true
},
"extends": [
"equimper",
"prettier"
]
},
"husky": {
"hooks": {
"pre-commit": "nps validate.withCoverage && lint-staged"
}
},
"jest": {
"bail": true,
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
},
"lint-staged": {
"*.js": [
"prettier --single-quote --no-semi --write",
"git add"
]
},
"peerDependencies": {
"micro": ">=7.3.0"
},
"dependencies": {
"micro-redirect": "^1.0.0",
"request": "^2.85.0",
"request-promise": "^4.2.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"all-contributors-cli": "^4.11.1",
"codecov": "^3.0.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-equimper": "^2.2.2",
"eslint-config-prettier": "^2.9.0",
"husky": "^1.0.0-rc.1",
"jest": "^22.4.3",
"lint-staged": "^7.0.4",
"nps": "^5.9.0",
"nps-utils": "^1.5.0",
"prettier": "^1.12.0",
"semantic-release": "^15.1.7",
"snyk": "^1.71.0"
}
}