-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.04 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
{
"name": "@bacons/xcode",
"version": "1.0.0-alpha.24",
"main": "./build/index",
"description": "pbxproj parser",
"license": "MIT",
"author": "Evan Bacon <[email protected]> (https://github.com/evanbacon)",
"keywords": [
"pbxproj",
"xcodeproj",
"xcode",
"ios"
],
"files": [
"build",
"json.js",
"json.d.ts"
],
"dependencies": {
"@expo/plist": "^0.0.18",
"debug": "^4.3.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@chevrotain/types": "10.1.1",
"@expo/spawn-async": "^1.7.2",
"@tsconfig/node14": "^1.0.1",
"@types/debug": "^4.1.7",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.27",
"@types/react": "17.0.20",
"@types/react-dom": "17.0.9",
"@types/uuid": "^8.3.4",
"jest": "^27.0.1",
"jest-watch-typeahead": "^1.1.0",
"tempy": "^0.7.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf build",
"test": "jest",
"prepare": "yarn clean && yarn build"
}
}