UNPKG

1.47 kBJSONView Raw
1{
2 "name": "@expo/fastlane",
3 "version": "0.0.18",
4 "main": "dist/index.js",
5 "types": "dist/index.d.ts",
6 "files": [
7 "dist"
8 ],
9 "scripts": {
10 "start": "yarn watch",
11 "watch": "yarn compile --watch --preserveWatchOutput",
12 "build": "npm run clean && npm run compile",
13 "clean": "rm -rf ./dist",
14 "clean-all": "yarn clean && rm -rf node_modules",
15 "compile": "tsc -p tsconfig.build.json",
16 "prepublishOnly": "npm run build",
17 "lint": "eslint 'src/**/*.ts'",
18 "test:unit": "echo \"no tests found\" || ./resources/jest --config jest.config.unit.js",
19 "test:unit:watch": "./resources/jest --config jest.config.unit.js --watch",
20 "test:integration": "echo \"no tests found\" || ./resources/jest --runInBand --config jest.config.integration.js",
21 "test:integration:watch": "./resources/jest --runInBand --config jest.config.integration.js --watchAll"
22 },
23 "dependencies": {
24 "@expo/logger": "0.0.16",
25 "@expo/turtle-spawn": "0.0.16"
26 },
27 "devDependencies": {
28 "@typescript-eslint/eslint-plugin": "^2.11.0",
29 "@typescript-eslint/parser": "^2.11.0",
30 "eslint": "^6.7.2",
31 "eslint-config-airbnb-base": "^14.0.0",
32 "eslint-config-airbnb-typescript": "^6.3.1",
33 "eslint-config-prettier": "^6.11.0",
34 "eslint-plugin-import": "^2.19.1",
35 "jest": "^24.9.0",
36 "prettier": "^2.0.5",
37 "ts-jest": "^24.2.0",
38 "typescript": "^3.9.3"
39 },
40 "volta": {
41 "node": "14.15.1",
42 "yarn": "1.22.10"
43 }
44}