forked from bericp1/netlify-cms-oauth-provider-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.7 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
{
"name": "netlify-cms-oauth-provider-node",
"version": "0.0.0-development",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint '{*,{lib,docs}/**/*,__{tests,mocks}__/**/*}.js' || true",
"pretty": "prettier --write '{*,{lib,docs,.github}/**/*,__{tests,mocks}__/**/*}.{json,md,yml,js}'",
"fixcode": "yarn run pretty",
"semantic-release": "semantic-release",
"release": "yarn run semantic-release",
"release-ci": "echo 'unsafe-perm = true' > ./.npmrc && yarn run semantic-release && rm -rf ./.npmrc",
"commit": "git-cz",
"prepare": "husky install"
},
"repository": "https://github.com/bericp1/netlify-cms-oauth-provider-node",
"author": "Brandon Phillips <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"lib",
".eslintignore",
".eslintrc.json",
".gitignore",
".prettierignore",
".prettierrc.json",
"index.js",
"jest.config.js",
"LICENSE",
"package.json",
"README.md",
"yarn.lock"
],
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"front-matter": "^4.0.2",
"husky": "^5.1.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"marked": "^2.0.1",
"prettier": "^2.2.1",
"semantic-release": "^19.0.3"
},
"engines": {
"node": ">=11.15.0"
},
"lint-staged": {
"{*,{lib,docs}/**/*,__{tests,mocks}__/**/*}.js": [
"prettier --write",
"eslint"
],
"{*,{lib,docs,.github}/**/*,__{tests,mocks}__/**/*}.{json,md,yml}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"convict": "^5.2.0",
"debug": "^4.3.1",
"escape-string-regexp": "^4.0.0",
"mustache": "^4.1.0",
"ramda": "^0.27.1",
"randomstring": "^1.1.5",
"simple-oauth2": "^3.1.0",
"verror": "^1.10.0"
}
}