-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 969 Bytes
/
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
{
"name": "notion-translator",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"local": "node src/local",
"build": "npm run lint && npm run test && npm run package",
"package": "ncc build src/index.js --license licenses.txt",
"test": "jest",
"lint": "eslint src",
"fix": "eslint --fix src"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@notionhq/client": "^2.2.2",
"@tryfabric/martian": "^1.2.4",
"object-hash": "^2.2.0",
"octokit": "^1.7.1",
"translate": "^1.4.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^28.1.0"
}
}