-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "toggl-connector",
"version": "0.0.1",
"description": "Toggl Connector for Google Data Studio",
"author": {
"name": "Joshua Tzucker",
"url": "https://joshuatz.com/?utm_source=package"
},
"repository": {
"type": "git",
"url": "https://github.com/joshuatz/gds-toggl-connector.git"
},
"license": "Apache-2.0",
"main": "main.ts",
"fileOrder": [
"gds-types.ts",
"setup.ts",
"helpers.ts",
"toggl-types.ts",
"toggl.ts",
"main.ts",
"fields.ts",
"auth.ts"
],
"scripts": {
"test": "npm run lint && jest",
"prep-ts": "node prep-ts.js",
"run-tsc": "tsc",
"prep-build": "node prep-build-dir.js",
"build": "npm run prep-build && npm run prep-ts && npm run run-tsc && node add-polyfills.js",
"build-push": "npm run build && cd build && clasp push",
"lint": "prettier --check \"src/**/*.ts\" \"*.js\"",
"format": "prettier --write \"src/**/*.ts\" \"*.js\""
},
"dependencies": {
"es6-object-assign": "^1.1.0",
"es6-promise": "^4.2.8"
},
"devDependencies": {
"typescript": "^4.3.5",
"@types/google-apps-script": "1.0.37",
"@types/jest": "^27.0.0",
"concat": "^1.0.3",
"fs-extra": "^10.0.0",
"jest": "^27.0.6",
"replace-in-file": "^6.2.0",
"ts-jest": "^27.0.4"
}
}