forked from Purii/react-native-tableview-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.94 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
{
"name": "react-native-tableview-simple",
"description": "React Native component for TableView made with pure CSS",
"homepage": "https://github.com/Purii/react-native-tableview-simple",
"version": "0.17.1",
"author": "Patrick Puritscher <hello@patrickpuritscher.com>",
"scripts": {
"format:src": "prettier --trailing-comma es5 --single-quote --write 'components/**/*.js'",
"format:example": "prettier --trailing-comma es5 --single-quote --write 'example/*.js'",
"format": "npm run format:src && npm run format:example",
"jest": "jest",
"lint": "eslint index.js components/",
"precommit": "lint-staged",
"test": "npm run lint && npm run jest"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/example/"
],
"modulePathIgnorePatterns": ["<rootDir>/example/"]
},
"main": "index.js",
"types": "index.d.ts",
"license": "MIT",
"keywords": [
"react-native",
"react-component",
"tableview",
"UITableView",
"crossplatform",
"ios",
"android"
],
"peerDependencies": {
"react": "*",
"react-native": ">=0.44 || 0.50.0-rc"
},
"bugs": {
"url": "https://github.com/Purii/react-native-tableview-simple/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:Purii/react-native-tableview-simple.git"
},
"devDependencies": {
"babel-jest": "21.2.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"husky": "^0.14.3",
"jest": "21.2.1",
"lint-staged": "^4.2.3",
"prettier": "^1.7.4",
"react": "^16.0.0",
"react-native": "^0.49.0",
"react-test-renderer": "16.0.0"
},
"dependencies": {
"prop-types": "^15.6.0"
}
}