-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.24 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
{
"name": "react-native-theme-provider",
"version": "0.0.2",
"description": "Theme provider for react-native",
"main": "index.js",
"scripts": {
"build": "npm run lint && ./node_modules/.bin/babel src --out-dir dist",
"lint": "./node_modules/.bin/eslint src/**/*.js"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist/",
"__mocks__/",
"node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/WhatAKitty/react-theme-provider.git"
},
"keywords": [
"react-native",
"theme"
],
"author": "WhatAKitty",
"license": "MIT",
"bugs": {
"url": "https://github.com/WhatAKitty/react-theme-provider/issues"
},
"homepage": "https://github.com/WhatAKitty/react-theme-provider#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"eslint": "^5.8.0",
"expect.js": "^0.3.1",
"metro-react-native-babel-preset": "^0.49.0",
"mocha": "^5.2.0"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": ">=16.5.0",
"react-dom": ">=16.5.0",
"react-native": ">=0.57.0"
}
}