This repository was archived by the owner on Mar 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "react-native-animated-number",
"version": "1.2.0",
"description": "React Native component that animates a number by smoothly changing it between renders",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"sideEffects": false,
"homepage": "https://github.com/rpander93/react-native-animated-number",
"repository": {
"type": "git",
"url": "https://github.com/rpander93/react-native-animated-number.git"
},
"scripts": {
"test": "jest",
"prepare": "npm run build",
"build": "rollup -c"
},
"keywords": [
"react",
"native",
"animated",
"number"
],
"author": "Remco Pander",
"license": "MIT",
"files": [
"build"
],
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-object-rest-spread": "7.13.8",
"@types/jest": "^25.1.0",
"@types/react-native": "0.63.49",
"@types/react-test-renderer": "16.0.3",
"jest": "^26.6.3",
"react": "16.13.1",
"react-native": "0.63.4",
"react-test-renderer": "16.13.1",
"rollup": "2.47.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-typescript2": "0.30.0",
"ts-jest": "^26.5.5",
"tslib": "2.2.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}