-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 964 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
35
36
37
38
39
40
{
"name": "ats-toggle",
"version": "1.0.4",
"description": "toggles NSAppTransportSecurity for iOS Info.plist",
"main": "dist/main.js",
"bin": {
"ats-toggle": "dist/main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/RichardMarks/ats-toggle.git"
},
"author": "Richard Marks <ccpsceo@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {
"chalk": "^4.1.0",
"cli-table": "^0.3.6",
"commander": "^7.2.0",
"inquirer": "^8.0.0",
"plist": "^3.0.2",
"typescript": "^4.2.3"
},
"devDependencies": {
"@types/cli-table": "^0.3.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.36",
"@types/plist": "^3.0.2",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4"
},
"scripts": {
"prepublish": "yarn build",
"build": "tsc",
"clean": "rm -rf ./dist",
"test": "jest --passWithNoTests"
}
}