-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
109 lines (109 loc) · 2.95 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "react-native-speedometer",
"version": "1.0.5",
"description": "A Customizable Speedometer Implementation in React Native",
"main": "dist/react-native-speedometer.cjs.js",
"jsnext:main": "dist/react-native-speedometer.esm.js",
"module": "dist/react-native-speedometer.esm.js",
"scripts": {
"prebuild": "rimraf dist",
"prepublishOnly": "run-s build",
"prepack": "run-s build",
"build": "rollup -c",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ignore-path .gitignore --ext .js --ext .jsx",
"fix-lint": "yarn lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pritishvaidya/react-native-speedometer.git"
},
"files": [
"dist",
"images"
],
"keywords": [
"react-native",
"react-native-speedometer",
"speedometer",
"speedometer-progress"
],
"author": {
"name": "Pritish Vaidya",
"email": "[email protected]",
"url": "pritishvaidya.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pritishvaidya/react-native-speedometer/issues"
},
"homepage": "https://github.com/pritishvaidya/react-native-speedometer#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"check-prop-types": "^1.1.2",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.3.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.1.0",
"jest": "^23.6.0",
"jest-extended": "^0.11.0",
"lint-staged": "^8.1.0",
"npm-run-all": "^4.1.5",
"react": "^16.7.0",
"react-native": "^0.61.5",
"react-test-renderer": "^16.7.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^4.0.2"
},
"peerDependencies": {
"react": "^16.5.2",
"react-native": "^0.57.1"
},
"dependencies": {
"prop-types": "^15.6.2"
},
"jest": {
"preset": "react-native",
"setupTestFrameworkScriptFile": "jest-extended",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"modulePathIgnorePatterns": [
"<rootDir>/example/"
]
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"git add"
]
},
"ignore": [
"**/test/*.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}