-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "amtrak2calendar",
"version": "1.0.0",
"description": "Put Amtrak reservations on your Google Calendar by scanning your GMail account",
"devDependencies": {
"@types/gapi.client.drive": "^3.0.3",
"@types/jasmine": "^3.5.0",
"@types/moment-timezone": "^0.5.12",
"@types/node": "^10.17.6",
"jasmine": "^3.5.0",
"jasmine-ts": "^0.3.0",
"moment-timezone": "^0.5.27",
"prettier": "^1.19.1",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.7.2"
},
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "jasmine-ts",
"build": "tsc",
"start": "npm run build && node dist",
"prepublishOnly": "npm run lint && npm run test"
},
"author": "Jeff Runningen <[email protected]>",
"license": "MIT",
"prettier": {
"trailingComma": "es5",
"arrowParens": "always"
},
"dependencies": {
"@types/google-apps-script": "0.0.37"
}
}