-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.16 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
{
"name": "react-native-lottie-sequence",
"version": "0.2.4",
"description": "✨A tiny package for stringing together Lottie animations ✨",
"author": "tn12787",
"license": "MIT",
"repository": "tn12787/react-native-lottie-sequence",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"keywords": [
"react-component",
"react-native-component",
"react",
"mobile",
"ios",
"android",
"ui",
"animation",
"sequence",
"lottie"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepublish": "yarn test",
"test": "run-s test:unit test:build",
"test:build": "run-s build",
"test:unit": "cross-env CI=1 jest --coverage",
"test:snaps": "jest -u",
"test:watch": "jest --watchAll"
},
"peerDependencies": {
"lottie-react-native": ">=~2.6.1",
"react": "^16.0.0",
"react-native": "@>=0.46"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.27",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-eslint": "^10.0.3",
"babel-preset-expo": "^8.1.0",
"cross-env": "^7.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^2.2.0",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"jest-expo": "^37.0.0",
"jest-runner-eslint": "^0.7.7",
"lottie-react-native": ">=~2.6.1",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-native": "^0.62.2",
"react-native-web": "^0.12.2"
},
"files": [
"dist"
]
}