forked from nandorojo/moti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.21 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"description": "The universal React Native animation library, powered by Reanimated 3. 🦉",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nandorojo/moti.git"
},
"scripts": {
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"fix": "eslint --fix \"**/*.{js,ts,tsx}\" && manypkg fix && prettier --write \"**/*.{js,ts,tsx}\"",
"typescript": "tsc --noEmit --composite false",
"test": "jest",
"build": "lerna run prepare",
"prerelease": "lerna run clean",
"release-old": "lerna publish",
"release": "auto shipit",
"example": "yarn --cwd example",
"prepare": "lerna run prepare"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"eslintConfig": {
"extends": [
"eslint-config-nando"
]
},
"detox": {
"test-runner": "jest",
"runner-config": "example/e2e/config.json",
"configurations": {
"ios.sim.debug": {
"binaryPath": "example/ios/build/Build/Products/Debug-iphonesimulator/ReactNavigationExample.app",
"build": "set -o pipefail; xcodebuild -workspace example/ios/ReactNavigationExample.xcworkspace -scheme ReactNavigationExample -configuration Debug -sdk iphonesimulator -derivedDataPath example/ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 11 Pro"
}
},
"ios.sim.release": {
"binaryPath": "example/ios/build/Build/Products/Release-iphonesimulator/ReactNavigationExample.app",
"build": "export RCT_NO_LAUNCH_PACKAGER=true; set -o pipefail; xcodebuild -workspace example/ios/ReactNavigationExample.xcworkspace -scheme ReactNavigationExample -configuration Release -sdk iphonesimulator -derivedDataPath example/ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 11 Pro"
}
}
}
},
"dependencies": {},
"devDependencies": {
"auto": "^10.13.3",
"@commitlint/config-conventional": "^11.0.0",
"@manypkg/cli": "^0.17.0",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-jest": "^26.6.1",
"codecov": "^3.8.0",
"commitlint": "^11.0.0",
"eslint": "^7.18.0",
"eslint-config-nando": "^1.0.10",
"husky": "^4.3.8",
"jest": "^26.6.1",
"lerna": "^3.22.1",
"prettier": "^2.2.1",
"typescript": "^4.0.3"
},
"author": "Fernando Rojo <[email protected]>",
"auto": {
"plugins": [
"npm",
"all-contributors",
"first-time-contributor",
"released",
"slack",
"twitter"
],
"onlyPublishWithReleaseLabel": true,
"labels": [
{
"name": "minor",
"changelogTitle": "🚀 Enhancement",
"description": "Increment the minor version when merged",
"releaseType": "minor",
"color": "8000c5",
"overwrite": true
}
]
}
}