-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
91 lines (91 loc) · 1.86 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": "gatsby-source-notion-api",
"version": "0.0.0",
"description": "Gatsby source plugin for official Notion.so API",
"main": "index.js",
"publishConfig": {
"registry": "https://registry-url",
"access": "public"
},
"scripts": {
"test": "ava",
"test:cover": "nyc ava",
"format": "prettier --write *.{js,json,md} **/*.{js,json,md} **/**/*.{js,json,md}",
"lint": "prettier -c *.{js,json,md} **/*.{js,json,md} **/**/*.{js,json,md}",
"commit": "gitmoji --commit",
"build": "echo \"No build script setup\""
},
"keywords": [
"gatsby",
"gatsby-plugin",
"notion"
],
"author": "Sergei Orlov <hello@orlow.dev> (https://orlow.dev/)",
"license": "0BSD",
"homepage": "https://github.com/orlowdev/gatsby-source-notion-api",
"bugs": {
"email": "hello@orlow.dev",
"url": "https://github.com/orlowdev/gatsby-source-notion-api/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/orlowdev/gatsby-source-notion-api.git"
},
"dependencies": {
"node-fetch": "^2.6.1",
"or-pipets": "^1.0.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"ava": "^3.15.0",
"gitmoji-cli": "^4.1.0",
"husky": "^6.0.0",
"nyc": "^15.1.0",
"prettier": "^2.3.0",
"sinon": "^10.0.0",
"yarn": "^1.22.10"
},
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"singleQuote": false,
"semi": false,
"useTabs": true,
"tabWidth": 1,
"bracketSpacing": true
},
"ava": {
"files": [
"test/**/*"
],
"extensions": [
"js"
],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"verbose": true,
"nodeArguments": [
"--trace-deprecation",
"--napi-modules"
]
},
"nyc": {
"reporter": [
"text",
"lcov",
"html"
],
"branches": 80,
"lines": 80,
"functions": 80,
"statements": 80,
"check-coverage": true,
"all": true
}
}