-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
66 lines (66 loc) · 1.58 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
{
"name": "gaslacker",
"version": "0.0.3",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --fix tests/**/*.ts",
"test": "jest",
"build": "npm run lint && npm run test && rimraf dist && webpack && cpx appsscript.json dist",
"deploy": "npm run build && clasp push",
"fmt": "prettier --write \"**/*.{js,ts,json,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/yhay81/GASlacker.git"
},
"keywords": [
"gas",
"google-apps-script",
"clasp"
],
"author": "yhay81",
"license": "MIT",
"bugs": {
"url": "https://github.com/yhay81/GASlacker/issues"
},
"homepage": "https://github.com/yhay81/GASlacker#readme",
"devDependencies": {
"@types/google-apps-script": "1.0.10",
"@types/jest": "^25.1.3",
"@typescript-eslint/eslint-plugin": "2.22.0",
"@typescript-eslint/parser": "2.22.0",
"cpx": "^1.5.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"gas-webpack-plugin": "^1.0.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"braces": ">=2.3.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(tests/.+(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"prettier": {
"singleQuote": true,
"semi": false
}
}