-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.56 KB
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
{
"name": "@iperka/scan-categorizer",
"description": "Categorize your scanned documents and organize them in folders.",
"version": "2.0.3",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Michael Beutler"
},
"keywords": [
"Google Drive",
"Scan",
"Document",
"Categorize",
"Organize",
"Workflow"
],
"repository": {
"type": "git",
"url": "https://github.com/iperka/scan-categorizer.git"
},
"scripts": {
"test": "jest",
"build": "rollup -c ./rollup.config.js",
"push": "yarn build && clasp push",
"deploy": "clasp deploy -d \"Scan categorizer\"",
"lint": "eslint ./src/**/*.ts",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/google-apps-script": "^1.0.45",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"babel-jest": "^27.5.1",
"eslint": "^8.12.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^9.1.7",
"jest": "^27.5.1",
"jest-junit": "^13.0.0",
"rollup": "^2.70.1",
"rollup-plugin-copy": "^3.4.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.2"
},
"dependencies": {
"@google/clasp": "^2.4.1"
}
}