forked from vitalets/react-native-extended-stylesheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 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
70
{
"name": "react-native-extended-stylesheet",
"version": "0.3.0",
"description": "Extended StyleSheets for React Native",
"author": {
"name": "Vitaliy Potapov",
"email": "[email protected]"
},
"main": "src/index.js",
"scripts": {
"code": "npm run check-deps && eslint src",
"check-deps": "check-dependencies --only-specified",
"show-deps": "npm ls --depth=0",
"test": "jest --coverage",
"coveralls": "coveralls < coverage/lcov.info",
"release-patch": "npm run code && npm test && npm version patch && npm publish && git push --follow-tags",
"release-minor": "npm run code && npm test && npm version minor && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git://github.com/vitalets/react-native-extended-stylesheet.git"
},
"bugs": {
"url": "https://github.com/vitalets/react-native-extended-stylesheet/issues"
},
"license": "MIT",
"dependencies": {
"css-mediaquery": "^0.1.2",
"object-resolve-path": "^1.1.0"
},
"devDependencies": {
"babel-eslint": "^6.1.0",
"babel-jest": "^13.0.0",
"babel-preset-react-native": "^1.5.7",
"check-dependencies": "^0.12.0",
"coveralls": "^2.11.9",
"eslint": "^3.0.0",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-react-native": "^1.1.0",
"ghooks": "^1.3.0",
"jest-cli": "^13.0.0"
},
"config": {
"ghooks": {
"pre-commit": "bash hooks/pre-commit.sh",
"pre-push": "npm run code && npm test"
}
},
"jest": {
"automock": false,
"testPathDirs": [
"src"
],
"scriptPreprocessor": "node_modules/babel-jest",
"testFileExtensions": [
"test.js"
],
"verbose": true,
"collectCoverage": false
},
"keywords": [
"react",
"react-native",
"react-component",
"react-native-component",
"mobile",
"ios",
"android"
]
}