-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
63 lines (63 loc) · 1.44 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
{
"name": "react-native-animated-spinkit",
"description": "A pure JavaScript port of SpinKit for React Native.",
"version": "1.5.2",
"author": "Tien Pham",
"main": "lib/commonjs/index.js",
"license": "MIT",
"source": "src/index.ts",
"react-native": "src/index.ts",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"scripts": {
"prepare": "bob build",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"lint": "tsc --noEmit && eslint src --ext ts,tsx"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react": "^16.9.19",
"@types/react-native": "0.62.13",
"eslint": "^7.16.0",
"eslint-config-tienphaw": "^1.4.0",
"husky": "^5.0.6",
"pinst": "^2.1.1",
"prettier": "^2.2.1",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-builder-bob": "^0.17.1",
"typescript": "^4.1.3"
},
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"keywords": [
"react",
"react-native",
"spinkit",
"expo",
"loading"
],
"repository": {
"type": "git",
"url": "https://github.com/tienphaw/react-native-animated-spinkit.git"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}