forked from typeofweb-org/vercel-netlify-cms-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.43 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
{
"name": "@openlab/vercel-netlify-cms-github",
"description": "Vercel API routes to login to netlify-cms deployed on vercel",
"version": "1.1.1",
"repository": "digitalinteraction/vercel-netlify-cms-github",
"author": "",
"license": "MIT",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "tsc",
"lint": "tsc --noEmit",
"prettier": "prettier --write '**/*.{js,json,css,md,ts,tsx}'",
"preversion": "npm run test -s && npm run build"
},
"keywords": [],
"engines": {
"node": ">=12"
},
"dependencies": {
"dedent": "^0.7.0",
"dotenv": "^8.2.0",
"simple-oauth2": "^4.2.0"
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@types/simple-oauth2": "^4.1.0",
"@vercel/node": "^1.9.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"yorkie": "^2.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,json,css,md,ts,tsx}": [
"prettier --write"
]
},
"main": "dist/index.js",
"types": "dist/index.d.js"
}