UNPKG

1.84 kBJSONView Raw
1{
2 "name": "@expo/build-tools",
3 "version": "0.1.6",
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": "yarn run jest",
20 "test:unit:watch": "yarn test:unit --watch",
21 "test:unit:ci-linux": "yarn test:unit -c jest.ci-linux.config.js",
22 "test:unit:ci-macos": "yarn test:unit -c jest.ci-macos.config.js"
23 },
24 "dependencies": {
25 "@expo/downloader": "0.0.5",
26 "@expo/fastlane": "0.0.9",
27 "@expo/logger": "0.0.8",
28 "@expo/template-file": "0.1.4",
29 "@expo/turtle-spawn": "0.0.9",
30 "@hapi/boom": "^7.4.3",
31 "@hapi/joi": "^16.1.2",
32 "@types/hapi__joi": "^15.0.4",
33 "fs-extra": "^8.1.0",
34 "got": "^9.6.0",
35 "lodash": "^4.17.15",
36 "node-forge": "^0.9.1",
37 "plist": "^3.0.1",
38 "uuid": "^3.3.3"
39 },
40 "devDependencies": {
41 "@types/fs-extra": "^8.0.1",
42 "@types/got": "^9.6.7",
43 "@types/hapi__boom": "^7.4.1",
44 "@types/jest": "^24.0.17",
45 "@types/lodash": "^4.14.149",
46 "@types/node-forge": "^0.8.6",
47 "@types/plist": "^3.0.2",
48 "@types/uuid": "^3.4.5",
49 "@typescript-eslint/eslint-plugin": "^2.10.0",
50 "@typescript-eslint/parser": "^2.10.0",
51 "eslint": "^6.7.2",
52 "eslint-config-airbnb-base": "^14.0.0",
53 "eslint-config-airbnb-typescript": "^6.3.1",
54 "eslint-plugin-import": "^2.18.2",
55 "jest": "^24.8.0",
56 "ts-jest": "^24.0.2",
57 "typescript": "^3.7.2"
58 },
59 "volta": {
60 "node": "10.16.1",
61 "yarn": "1.21.1"
62 }
63}