-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 868 Bytes
/
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
{
"name": "sleep-saver",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"check": "npm run format:check && npm run lint && npm test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --ext .ts .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "[email protected]:blue-jam/sleep-saver.git"
},
"author": "blue-jam",
"license": "MIT",
"dependencies": {
"@google/clasp": "*"
},
"devDependencies": {
"@types/google-apps-script": "^1.0.49",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"jest": "^26.6.3",
"prettier": "^2.7.1",
"ts-jest": "^26.5.6",
"typescript": "^4.7.4"
}
}