-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "ios-simulator-app-exporter",
"version": "1.0.1",
"description": "List your iOS simulator devices and their applications, and help you to quickly export them.",
"main": "index.js",
"bin": {
"ios-simulator-app-exporter": "index.js"
},
"scripts": {
"start": "node index.js",
"test": "jest",
"lint": "eslint .",
"precommit": "lint-staged"
},
"author": "Nicolas Charpentier <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"commander": "^5.1.0",
"inquirer": "^7.0.0",
"simple-plist": "^1.0.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^27.0.3",
"lint-staged": "^11.0.0",
"prettier": "2.3.2"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}