forked from Shopify/restyle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.76 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.76 KB
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
{
"name": "@alloc/restyle",
"version": "3.0.1",
"license": "MIT",
"description": "A system for building constraint-based UI components",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"react-native": "src/index.ts",
"sideEffects": false,
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint '**/*.{ts,tsx}' && yarn tsc --noEmit",
"lint-fix": "eslint --fix '**/*.{ts,tsx}'",
"prepublishOnly": "tsc",
"up": "yarn && yarn fixture-up",
"fixture-up": "yarn build && cd fixture && yarn && pod install --project-directory=ios",
"start": "cd fixture && react-native start",
"run-ios": "cd fixture && yarn react-native run-ios",
"run-android": "cd fixture && yarn react-native run-android",
"deploy:documentation": "gh-pages -d documentation/build"
},
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"author": "Shopify Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/restyle.git"
},
"devDependencies": {
"@shopify/eslint-plugin": "^42.1.0",
"@tsconfig/react-native": "^3.0.0",
"@types/jest": "^29.2.1",
"@types/react": "^18.0.24",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.2.1",
"eslint": "^8.32.0",
"gh-pages": "^5.0.0",
"jest": "^29.2.1",
"prettier": "^2.4.1",
"react": "18.2.0",
"react-native": "^0.81.1",
"react-test-renderer": "18.2.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"files": [
"dist",
"src"
],
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}