forked from rudotriton/scriptable-calendar-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.54 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
{
"name": "scriptable-calendar-widget",
"version": "0.0.1",
"description": "A script for iOS Scriptable app.",
"main": "calendar.js",
"type": "module",
"scripts": {
"build": "npm run bundle && npm run postBundle",
"bundle": "esbuild src/index.ts --bundle --platform=node --outfile=calendar.js",
"postBundle": "node util/postBundle.js calendar.js --out-file=calendar.js",
"bundle:watch": "esbuild src/index.ts --bundle --watch --platform=node --outfile=dev/bundle.js",
"dev": "concurrently \"npm run bundle:watch\" \"node util/watchBuildMove.js\"",
"test": "jest --watch",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rudotriton/scriptable-calendar-widget.git"
},
"keywords": [],
"author": "Raigo Jerva",
"license": "MIT",
"bugs": {
"url": "https://github.com/rudotriton/scriptable-calendar-widget/issues"
},
"homepage": "https://github.com/rudotriton/scriptable-calendar-widget#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/scriptable-ios": "^1.6.5",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"chokidar": "^3.5.3",
"commander": "^9.0.0",
"concurrently": "^7.0.0",
"esbuild": "^0.14.23",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}