This repository has been archived by the owner on Aug 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
85 lines (85 loc) · 2.08 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
82
83
84
85
{
"name": "glamorous-native",
"version": "2.0.0",
"description": "React glamorous library for React Native",
"main": "src/index.js",
"types": "./typings/glamorous.d.ts",
"scripts": {
"start": "nps",
"test": "nps test"
},
"keywords": [
"react",
"react-native",
"glamorous",
"styled-components",
"jsxstyle",
"css-in-js",
"cssinjs"
],
"author": "Atticus White <[email protected]> (https://robinpowered.com/)",
"license": "MIT",
"jest": {
"preset": "jest-react-native",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/examples/"
]
},
"peerDependencies": {
"react": ">=0.14.5 || >=16.0.0-alpha.6",
"react-native": ">=0.14.0 && < 1"
},
"devDependencies": {
"babel-preset-react-native": "^1.9.2",
"codecov": "^2.2.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-kentcdodds": "^12.2.1",
"jest": "^20.0.1",
"jest-enzyme": "^3.1.1",
"jest-react-native": "^18.0.0",
"nps": "^5.1.0",
"nps-utils": "^1.2.0",
"prop-types": "^15.5.10",
"react": "16.0.0-alpha.6",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-native": "^0.44.0",
"react-native-mock": "^0.3.1",
"react-native-mock-render": "0.0.5",
"react-test-renderer": "^15.5.4",
"semantic-release": "^6.3.6"
},
"dependencies": {
"brcast": "^2.0.0"
},
"eslintConfig": {
"extends": [
"kentcdodds",
"kentcdodds/jest",
"kentcdodds/react",
"kentcdodds/prettier"
],
"rules": {
"import/prefer-default-export": 0
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/robinpowered/glamorous-native.git"
},
"bugs": {
"url": "https://github.com/robinpowered/glamorous-native/issues"
},
"homepage": "https://github.com/robinpowered/glamorous-native#readme"
}