-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
64 lines (64 loc) · 1.37 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
{
"name": "react-native-ionicons",
"version": "4.6.5",
"description": "Ionic icons for React Native",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"prepublishOnly": "npm test",
"generate": "node generate",
"prettier": "prettier --write '**/*.{js,json,flow,ts,md}'",
"pretest": "npm run generate; npm run prettier",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{js,json,flow,ts,md}": [
"prettier --write"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/arniu/react-native-ionicons.git"
},
"keywords": [
"react-native",
"ionicons",
"ionic",
"icons"
],
"author": "Arniu Tseng",
"license": "MIT",
"homepage": "https://github.com/arniu/react-native-ionicons#readme",
"bugs": {
"url": "https://github.com/arniu/react-native-ionicons/issues"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.10.0",
"@babel/preset-env": "^7.10.0",
"babel-jest": "^26.0.1",
"husky": "^4.2.5",
"ionicons": "^4.6.3",
"jest": "^26.0.1",
"lint-staged": "^10.2.6",
"prettier": "^2.0.5"
},
"rnpm": {
"assets": [
"fonts"
]
}
}