-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.53 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
54
55
56
57
58
{
"name": "agor",
"version": "0.0.2",
"description": "A Node CLI utility to launch an iOS simulator and navigate Safari to a specified page.",
"main": "dist/cli.js",
"repository": "https://github.com/jamiehaywood/agor.git",
"author": "Jamie Haywood <[email protected]>",
"license": "MIT",
"scripts": {
"postinstall": "husky install",
"lint": "eslint src/",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build": "rollup -c"
},
"files": [
"dist/cli.js",
"dist/index.js"
],
"keywords": [
"iOS",
"simulator",
"safari",
"mobile-browser",
"progressive-web-app"
],
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"esbuild": "^0.9.6",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"rollup": "^2.42.3",
"rollup-plugin-add-shebang": "^0.3.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-esbuild": "^3.0.2",
"rollup-plugin-preserve-shebang": "^1.0.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"bin": {
"agor": "dist/cli.js"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"minimist": "^1.2.5"
}
}