-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.67 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
{
"name": "@heritageholdings/danger-plugin-notion-tasks",
"description": "Manage your Notion's pages inside GitHub",
"author": "Diego Pasquali",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/heritageholdings/danger-plugin-notion-tasks.git"
},
"bugs": {
"url": "https://github.com/heritageholdings/danger-plugin-notion-tasks/issues"
},
"homepage": "https://github.com/heritageholdings/danger-plugin-notion-tasks",
"keywords": [
"danger",
"danger-plugin",
"notion"
],
"version": "0.1.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"prettier": "prettier",
"prettier-project": "npm run prettier -- 'src/**/*.{ts,tsx}' --write",
"lint": "eslint \"src/**/*.ts\"",
"publish-auto": "scripts/publish.sh"
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.4.1",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"@notionhq/client": "^2.2.3",
"danger": "*"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(.test)\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
]
}
}