-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.7 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
{
"name": "web-screenshot-to-slack-gas",
"version": "0.1.0",
"description": "WebScreenshot with Google Apps script and API FLASH",
"main": "index.ts",
"scripts": {
"lint": "tslint --fix src/**/*.ts",
"test": "jest --coverage",
"build": "npm run lint && rimraf dist && webpack && cpx src/appsscript.json dist",
"deploy": "npm run build && clasp push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tubone24/web-screenshot-to-slack-gas.git"
},
"keywords": [
"API Flash",
"screenshot",
"Slack",
"gas",
"google-apps-script",
"clasp"
],
"author": "tubone24",
"license": "MIT",
"bugs": {
"url": "https://github.com/tubone24/web-screenshot-to-slack-gas/issues"
},
"homepage": "https://github.com/tubone24/web-screenshot-to-slack-gas#readme",
"devDependencies": {
"@types/google-apps-script": "0.0.59",
"@types/jest": "24.0.18",
"cpx": "1.5.0",
"gas-webpack-plugin": "1.0.2",
"jest": "24.9.0",
"prettier": "1.18.2",
"rimraf": "3.0.0",
"ts-jest": "24.0.2",
"ts-loader": "6.0.4",
"tslint": "5.19.0",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "3.5.3",
"webpack": "4.39.3",
"webpack-cli": "3.3.8",
"braces": "2.3.1"
},
"jest": {
"verbose": true,
"globals": {
"UrlFetchApp": {}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(tests/.+(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"dotenv": "^8.1.0",
"fs": "0.0.1-security",
"gas-local": "^1.3.1"
}
}