-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
69 lines (69 loc) · 1.84 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
{
"name": "@callstack/react-theme-provider",
"version": "3.0.9",
"description": "Theme provider for react and react-native applications",
"main": "./lib/index.js",
"typings": "./typings/index.d.ts",
"files": [
"lib",
"typings"
],
"scripts": {
"flow": "flow",
"typescript": "tsc",
"lint": "eslint .",
"prepare": "babel src --out-dir lib --ignore '**/__tests__/**' --source-maps --delete-dir-on-start && flow-copy-source -i '**/__tests__/**' src lib",
"test": "jest",
"example": "yarn link && cd examples/web && yarn link @callstack/react-theme-provider && yarn start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/callstack/react-theme-provider.git"
},
"keywords": [
"react",
"react-native",
"theme",
"provider"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/callstack/react-theme-provider/issues"
},
"homepage": "https://github.com/callstack/react-theme-provider#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@callstack/eslint-config": "^3.0.2",
"@types/react": "^16.8.8",
"eslint": "^5.15.1",
"flow-bin": "^0.94.0",
"flow-copy-source": "^2.0.3",
"jest": "^24.5.0",
"prettier": "^1.16.4",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"typescript": "^3.3.3333"
},
"peerDependencies": {
"react": ">=16.3.0"
},
"dependencies": {
"deepmerge": "^3.2.0",
"hoist-non-react-statics": "^3.3.0"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/typings/"
]
}
}