UNPKG

2.06 kBJSONView Raw
1{
2 "name": "@expo/build-tools",
3 "version": "0.1.20",
4 "main": "dist/index.js",
5 "types": "dist/index.d.ts",
6 "files": [
7 "dist",
8 "templates"
9 ],
10 "scripts": {
11 "start": "yarn watch",
12 "watch": "yarn compile --watch --preserveWatchOutput",
13 "build": "npm run clean && npm run compile",
14 "clean": "rm -rf ./dist",
15 "clean-all": "yarn clean && rm -rf node_modules",
16 "compile": "tsc -p tsconfig.build.json",
17 "prepublishOnly": "npm run build",
18 "lint": "eslint 'src/**/*.ts'",
19 "test:unit": "./resources/jest --config jest.config.unit.js",
20 "test:unit:watch": "./resources/jest --config jest.config.unit.js --watch",
21 "test:integration": "echo \"no tests found\" || ./resources/jest --runInBand --config jest.config.integration.js",
22 "test:integration:watch": "./resources/jest --runInBand --config jest.config.integration.js --watchAll"
23 },
24 "dependencies": {
25 "@expo/config": "^3.3.12",
26 "@expo/downloader": "0.0.9",
27 "@expo/eas-build-job": "0.1.4",
28 "@expo/fastlane": "0.0.16",
29 "@expo/logger": "0.0.14",
30 "@expo/package-manager": "^0.0.34",
31 "@expo/plist": "^0.0.10",
32 "@expo/template-file": "0.1.8",
33 "@expo/turtle-spawn": "0.0.14",
34 "fast-glob": "^3.2.4",
35 "fs-extra": "^9.0.0",
36 "node-forge": "^0.9.1",
37 "plist": "^3.0.1",
38 "uuid": "^3.3.3",
39 "xml2js": "^0.4.23"
40 },
41 "devDependencies": {
42 "@types/fs-extra": "^9.0.1",
43 "@types/jest": "^24.0.17",
44 "@types/node-forge": "^0.8.6",
45 "@types/plist": "^3.0.2",
46 "@types/uuid": "^3.4.5",
47 "@types/xml2js": "^0.4.5",
48 "@typescript-eslint/eslint-plugin": "^2.10.0",
49 "@typescript-eslint/parser": "^2.10.0",
50 "eslint": "^6.7.2",
51 "eslint-config-airbnb-base": "^14.0.0",
52 "eslint-config-airbnb-typescript": "^6.3.1",
53 "eslint-config-prettier": "^6.11.0",
54 "eslint-plugin-import": "^2.18.2",
55 "jest": "^24.8.0",
56 "memfs": "^3.2.0",
57 "prettier": "^2.0.5",
58 "ts-jest": "^24.0.2",
59 "typescript": "^3.9.3"
60 },
61 "volta": {
62 "extends": "../../../package.json"
63 }
64}