generated from wbkd/webpack-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
executable file
·81 lines (81 loc) · 2.13 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-use-styles",
"version": "1.3.7",
"description": "React Native useStyles",
"main": "index.js",
"module": "src/index.js",
"types": "index.d.ts",
"files": [
"cjs",
"README.md",
"LICENSE.md",
"USER_GUIDE.md",
"index.js",
"index.d.ts"
],
"scripts": {
"test": "jest --verbose",
"test:watch": "jest --verbose --watch",
"test:coverage": "jest --collect-coverage",
"build": "cross-env NODE_ENV=production rollup -c && cross-env NODE_ENV=development rollup -c",
"prepare": "npm run build",
"lint": "eslint *.js **/*.js",
"check:types": "tsc",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rootstrap/react-native-use-styles.git"
},
"keywords": [
"react",
"react-native",
"styles",
"namespace",
"hooks",
"classes",
"CSS"
],
"author": "Agustín Prieto <agustin@rootstrap.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rootstrap/react-native-use-styles/issues"
},
"homepage": "https://github.com/rootstrap/react-native-use-styles#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-strip": "^2.0.0",
"@testing-library/react-native": "^7.0.2",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^2.2.0",
"eslint-plugin-react-native": "^3.10.0",
"husky": "^4.3.0",
"jest": "^24.9.0",
"prettier": "^2.1.2",
"react": "^16.8.0",
"react-native": "^0.59.0",
"react-test-renderer": "^16.8.0",
"rollup": "^1.29.0",
"typescript": "^4.0.3"
},
"peerDependencies": {
"react": "^16.8.0",
"react-native": "^0.59.0",
"react-test-renderer": "^16.8.0"
},
"husky": {
"hooks": {
"pre-push": "npm test && npm run lint"
}
}
}