This repository has been archived by the owner on Aug 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.76 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
{
"name": "gas-gmail2slack",
"version": "0.0.1",
"description": "",
"main": "index.ts",
"scripts": {
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"test": "jest",
"build": "npm run lint && rimraf dist && webpack && cpx src/appsscript.json dist",
"deploy": "npm run build && clasp push",
"setup": "rm -f .clasp.json && clasp create --type sheets --title 'gas-Gmail2Slack' --rootDir ./dist",
"setup:use-id": "clasp setting scriptId"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kemsakurai/gas-Gmail2Slack.git"
},
"keywords": [
"gas",
"google-apps-script",
"clasp"
],
"author": "K.Sakurai",
"license": "MIT",
"bugs": {
"url": "https://github.com/kemsakurai/gas-Gmail2Slack/issues"
},
"homepage": "https://github.com/kemsakurai/gas-Gmail2Slack#readme",
"devDependencies": {
"@types/google-apps-script": "^1.0.14",
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"cpx": "1.5.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"gas-webpack-plugin": "1.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.3.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rimraf": "2.6.3",
"ts-jest": "^24.3.0",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "3.3.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(src/.+(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"node",
"json"
]
},
"dependencies": {
"@types/mocha": "^5.2.7"
}
}