-
-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
81 lines (81 loc) · 2.22 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
72
73
74
75
76
77
78
79
80
81
{
"name": "react-native-extended-stylesheet",
"version": "0.12.0",
"description": "Extended StyleSheets for React Native",
"author": {
"name": "Vitaliy Potapov",
"email": "[email protected]"
},
"main": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"code": "npm run lint",
"lint": "eslint src",
"test": "jest --onlyChanged",
"tt": "jest --coverage",
"tr": "BABEL_ENV=runtyper jest --no-cache",
"test:types": "tsc",
"ci": "run-s code tt tr test:types",
"sync-yarn-lock": "rm yarn.lock && yarn import && git add -A yarn.lock && (git diff-index --quiet HEAD -- yarn.lock || git commit -m'sync yarn.lock' --no-verify)",
"coveralls": "coveralls < coverage/lcov.info",
"prerelease": "run-s code tt tr test:types sync-yarn-lock",
"postrelease": "git push --follow-tags --no-verify",
"release": "npm version $VER && npm publish",
"release-patch": "VER=patch npm run release",
"release-minor": "VER=minor npm run release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "run-s code tt tr test:types"
}
},
"repository": {
"type": "git",
"url": "git://github.com/vitalets/react-native-extended-stylesheet.git"
},
"bugs": {
"url": "https://github.com/vitalets/react-native-extended-stylesheet/issues"
},
"dependencies": {
"css-mediaquery": "^0.1.2",
"object-resolve-path": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/runtime": "^7.5.0",
"@types/react-native": "^0.60.0",
"babel-eslint": "^10.0.2",
"babel-plugin-runtyper": "^0.4.0",
"coveralls": "^3.0.4",
"eslint": "^6.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-native": "^3.7.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^9.0.2",
"metro-react-native-babel-preset": "^0.55.0",
"npm-run-all": "^4.1.5",
"typescript": "^3.5.2"
},
"lint-staged": {
"*.js": "eslint"
},
"jest": {
"automock": false,
"roots": [
"src"
]
},
"keywords": [
"react",
"react-native",
"react-component",
"react-native-component",
"mobile",
"ios",
"android"
],
"license": "MIT"
}