-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
79 lines (79 loc) · 1.71 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
{
"name": "react-native-sparkline",
"version": "2.0.0-beta",
"description": "An ART-based sparkline component for react-native",
"main": "src/index.js",
"scripts": {
"precommit": "lint-staged",
"lint": "prettier --write '**/*.{js,ts,md}'; standard --fix",
"test": "jest"
},
"lint-staged": {
"*.{ts,md}": [
"prettier --write",
"git add"
],
"*.js": [
"prettier --write",
"standard --fix",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"standard": {
"env": {
"jest": true
},
"plugins": [
"flowtype"
],
"parser": "babel-eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arniu/react-native-sparkline.git"
},
"keywords": [
"react-native",
"sparkline",
"chart",
"ART"
],
"author": "Arniu Tseng",
"license": "MIT",
"homepage": "https://github.com/arniu/react-native-sparkline#readme",
"bugs": {
"url": "https://github.com/arniu/react-native-sparkline/issues"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"babel-eslint": "^8.x",
"babel-jest": "22.4.3",
"babel-preset-react-native": "4.0.0",
"eslint-plugin-flowtype": "^2.46.1",
"flow-bin": "^0.65.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.5",
"prettier": "^1.12.1",
"react": "^16.2.0",
"react-native": "^0.54.x",
"react-test-renderer": "^16.2.0",
"standard": "^11.0.1"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules"
]
},
"dependencies": {
"@react-native-community/art": "^1.1.2"
}
}