-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.96 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
{
"name": "react-native-view-editable",
"version": "0.0.0-development",
"description": "The one of the missing piece of react-native. View transformation with gestures ✋",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"checkall": "npm run test && npm run flow && npm run lint",
"flow": "flow",
"test": "jest --verbose",
"coverage": "npm test -- --coverage",
"lint": "eslint ./lib/**/*.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/react-armenia/react-native-view-editable.git"
},
"keywords": [
"react",
"react-native",
"gesture-recognition",
"ios",
"android",
"react-armenia"
],
"author": "Shahen Hovhannisyan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-armenia/react-native-view-editable/issues"
},
"homepage": "https://github.com/react-armenia/react-native-view-editable#readme",
"devDependencies": {
"babel-eslint": "6.1.2",
"babel-jest": "19.0.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-preset-react-native": "1.9.1",
"babel-preset-react-native-stage-0": "1.0.1",
"commitizen": "2.8.6",
"cz-conventional-changelog": "1.2.0",
"eslint": "2.7.0",
"eslint-config-airbnb": "6.2.0",
"eslint-plugin-jsx-a11y": "1.3.0",
"eslint-plugin-react": "4.2.3",
"eslint-plugin-react-native": "1.1.0",
"flow-bin": "0.42.0",
"flow-typed": "2.0.0",
"ghooks": "^2.0.0",
"jest": "19.0.2",
"react": "15.4.2",
"react-native": "0.42.3",
"react-test-renderer": "15.4.2",
"semantic-release": "^6.3.2",
"semantic-release-cli": "^3.0.3"
},
"jest": {
"preset": "react-native"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run checkall"
}
}
}