forked from vitalets/react-native-extended-stylesheet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.06 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.06 KB
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
{
"name": "react-native-extended-stylesheet",
"version": "0.8.0",
"description": "Extended StyleSheets for React Native",
"author": {
"name": "Vitaliy Potapov",
"email": "noginsk@rambler.ru"
},
"main": "src/index.js",
"scripts": {
"code": "check-dependencies && npm run lint",
"lint": "eslint src",
"test": "jest --onlyChanged",
"tt": "jest --coverage",
"test-runtyper": "BABEL_ENV=runtyper jest --no-cache",
"ci": "run-s code tt",
"coveralls": "coveralls < coverage/lcov.info",
"prerelease": "run-s code tt",
"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",
"diff": "git diff -- . ':!package-lock.json'",
"deps": "npm ls --depth=0",
"precommit": "lint-staged",
"prepush": "run-s code tt"
},
"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-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-runtyper": "^0.2.2",
"babel-preset-react-native": "^4.0.0",
"check-dependencies": "^1.1.0",
"coveralls": "^3.0.0",
"eslint": "^4.10.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-native": "^3.1.0",
"husky": "^0.14.3",
"jest-cli": "^21.2.1",
"lint-staged": "^4.3.0",
"npm-run-all": "^4.1.1"
},
"lint-staged": {
"*.js": "eslint"
},
"jest": {
"automock": false,
"roots": [
"src"
],
"transform": {
"^.+\\.js$": "babel-jest"
},
"verbose": true,
"collectCoverage": false
},
"keywords": [
"react",
"react-native",
"react-component",
"react-native-component",
"mobile",
"ios",
"android"
],
"license": "MIT"
}