-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
69 lines (69 loc) · 1.85 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
{
"name": "react-native-editable-table",
"description": "Editable Table with vertical scrolling in React native",
"version": "1.0.0",
"main": "editabletable.js",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacob-hyde/react-native-editable-table.git"
},
"keywords": [
"react-native",
"react-native-table",
"react-native-editable-table"
],
"author": "Jacob Hyde",
"license": "MIT",
"bugs": {
"url": "https://github.com/jacob-hyde/react-native-editable-table/issues"
},
"homepage": "https://github.com/jacob-hyde/react-native-editable-table#readme",
"dependencies": {
"react": "16.6.0-alpha.8af6728",
"react-native": "0.57.4"
},
"devDependencies": {
"babel-jest": "23.6.0",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.49.0",
"react-test-renderer": "^16.6.3",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-preset-react-native": "^4.0.1",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.8.0",
"eslint-plugin-react": "^7.11.1",
"inquirer": "^6.2.0",
"jsdom": "^13.0.0",
"jsdom-global": "^3.0.2",
"pre-commit": "^1.2.2",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"react-native": "^0.57.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/node_modules/",
"tools/"
]
},
"pre-commit": [
"lint"
]
}