-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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
{
"name": "apps-script-jobqueue",
"version": "v0.1.7",
"description": "A simple job queue library for Google Apps Script.",
"private": true,
"main": "src/index.ts",
"typings": "src/index.d.ts",
"scripts": {
"build": "webpack",
"deploy": "npm run build && clasp push -f",
"test": "jest",
"lint": "tslint --fix src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/k2tzumi/apps-script-jobqueue.git"
},
"author": "k2tzumi",
"license": "MIT",
"bugs": {
"url": "https://github.com/k2tzumi/apps-script-jobqueue/issues"
},
"homepage": "https://github.com/k2tzumi/apps-script-jobqueue#readme",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@google/clasp": "^2.4.2",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"babel-loader": "^9.1.2",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^4.0.0",
"gas-webpack-plugin": "^2.3.0",
"jest": "^29.4.3",
"path-browserify": "^1.0.1",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@types/google-apps-script": "^1.0.57"
}
}