-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
64 lines (64 loc) · 1.71 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
{
"name": "gas-client",
"version": "1.1.1",
"description": "A client-side utility class that can call server-side Google Apps Script functions",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"repository": "https://github.com/enuchi/gas-client.git",
"author": "Elisha Nuchi",
"contributors": [
"Guilherme Tod <[email protected]> (https://github.com/guilhermetod)"
],
"license": "MIT",
"scripts": {
"prepack": "yarn build",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"prebuild": "rm -rf dist",
"build": "webpack"
},
"bugs": {
"url": "https://github.com/enuchi/gas-client/issues"
},
"homepage": "https://github.com/enuchi/gas-client#readme",
"keywords": [
"Google",
"Apps",
"Script",
"GAS",
"Client"
],
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "5.47.0",
"@typescript-eslint/parser": "5.47.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"uuid": "^9.0.0"
}
}