This repository has been archived by the owner on Dec 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
62 lines (62 loc) · 1.86 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
{
"name": "react-native-scl-alert",
"version": "1.3.0",
"description": "A React Native implementation of the package SCLAlertView",
"author": "Rafael Michels Motta <rafaelmotta021@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rafaelmotta/react-native-scl-alert/issues"
},
"homepage": "https://github.com/rafaelmotta/react-native-scl-alert",
"main": "index.js",
"private": false,
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-jest": "^23.0.0-alpha.0",
"babel-preset-expo": "^4.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.19.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jest": "^22.4.2",
"jest-serializer-enzyme": "^1.0.0",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"react": "16.2.0",
"react-dom": "^16.2.0",
"react-native": "^0.54.3",
"react-native-scripts": "1.11.1",
"react-test-renderer": "16.2.0"
},
"scripts": {
"test": "node node_modules/jest/bin/jest.js",
"test:watch": "node node_modules/jest/bin/jest.js --watch",
"test:coverage": "node node_modules/jest/bin/jest.js --coverage",
"lint": "./node_modules/.bin/eslint . --fix; exit 0",
"pretty": "prettier --semi false --print-width 100 --single-quote --trailing-comma none --write \"src/**/*.js\"",
"precommit": "lint-staged && yarn test"
},
"lint-staged": {
"*.js": [
"yarn pretty",
"git add"
]
},
"dependencies": {
"prop-types": "^15.6.1"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./testenv.js"
]
}
}