-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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": "meetter-gcal-scaper",
"version": "1.0.0",
"description": "Gcal scraper",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"license": "MIT",
"keywords": [],
"scripts": {
"prestart": "run-s clean build:main",
"start": "node ./build/main/index.js",
"clean": "trash build test",
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"build:watch": "run-s \"build:main -- -w\"",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"test": "run-s build test:*",
"test:lint": "tslint --project . && prettier \"src/**/*.ts\" --list-different",
"watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch\"",
"reset": "git clean -dfx && git reset --hard && yarn",
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('must be installed with Yarn: https://yarnpkg.com/')\""
},
"engines": {
"node": ">=12.8.4"
},
"dependencies": {
"@types/yargs": "^15.0.11",
"date-fns": "^2.16.1",
"googleapis": "^66.0.0",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"string-strip-html": "^7.0.3",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.12",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"trash-cli": "^4.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-immutable": "^6.0.1",
"typescript": "^4.1.2"
},
"prettier": {
"singleQuote": true
}
}