-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 KB
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
{
"name": "@pitcher/watcher",
"version": "1.2.0",
"author": "Pitcher AG",
"homepage": "https://github.com/PitcherAG/pitcher-watcher#readme",
"bugs": {
"url": "https://github.com/PitcherAG/pitcher-watcher/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PitcherAG/pitcher-watcher.git"
},
"scripts": {
"vue-watcher": "node src/vue --fileID=123456 --platform=ios",
"watcher": "node src/watcher --fileID=123456 --platform=ios --paths='src/' --ignored='utils/*'",
"test": "jest",
"lint": "eslint ./src",
"lint:autofix": "eslint ./src --fix"
},
"bin": {
"pitcher-watcher": "src/watcher.js",
"pitcher-watcher-vue": "src/vue.js"
},
"files": [
"src/"
],
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@pitcher/eslint-config": "^1.2.1",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.28.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^1.19.1"
},
"dependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"express": "^4.17.2",
"inquirer": "^8.1.2",
"ip": "^1.1.9",
"linkedom": "^0.14.3",
"minimist": "^1.2.6",
"portfinder": "^1.0.28",
"ws": "^8.5.0"
},
"peerDependencies": {
"@pitcher/vue-cli-plugin-pitcherify": "~0.4.0",
"@vue/cli-service": "~4.3.0"
}
}