UNPKG

1.89 kBJSONView Raw
1{
2 "name": "@expo/build-tools",
3 "version": "0.1.9",
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/downloader": "0.0.7",
26 "@expo/fastlane": "0.0.11",
27 "@expo/logger": "0.0.11",
28 "@expo/template-file": "0.1.6",
29 "@expo/turtle-spawn": "0.0.11",
30 "@hapi/joi": "^16.1.2",
31 "fs-extra": "^9.0.0",
32 "node-forge": "^0.9.1",
33 "plist": "^3.0.1",
34 "uuid": "^3.3.3"
35 },
36 "devDependencies": {
37 "@types/fs-extra": "^9.0.1",
38 "@types/hapi__joi": "^15.0.4",
39 "@types/jest": "^24.0.17",
40 "@types/node-forge": "^0.8.6",
41 "@types/plist": "^3.0.2",
42 "@types/uuid": "^3.4.5",
43 "@typescript-eslint/eslint-plugin": "^2.10.0",
44 "@typescript-eslint/parser": "^2.10.0",
45 "eslint": "^6.7.2",
46 "eslint-config-airbnb-base": "^14.0.0",
47 "eslint-config-airbnb-typescript": "^6.3.1",
48 "eslint-config-prettier": "^6.11.0",
49 "eslint-plugin-import": "^2.18.2",
50 "jest": "^24.8.0",
51 "prettier": "^2.0.5",
52 "ts-jest": "^24.0.2",
53 "typescript": "^3.7.2"
54 },
55 "volta": {
56 "node": "12.16.1",
57 "yarn": "1.21.1"
58 }
59}