-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
81 lines (81 loc) · 2.14 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-material-palette",
"version": "0.1.0",
"description": "",
"license": "MIT",
"repository": "github:callstack-io/react-native-material-palette",
"author": {
"name": "Raul Gomez Acuna",
"email": "[email protected]"
},
"main": "./lib/index.js",
"files": [
"lib",
"android"
],
"engines": {
"node": ">=6"
},
"scripts": {
"flow": "flow",
"lint": "eslint src",
"clean": "rimraf lib",
"prepublish": "yarn run clean && babel src --out-dir lib --ignore '__tests__/'",
"build:watch": "yarn run clean && babel src --out-dir lib --watch --ignore '__tests__/'",
"jest": "jest src",
"jest:coverage": "npm run jest && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "concurrently \"npm run lint\" \"npm run jest\" \"npm run flow\"",
"format": "eslint --fix src",
"prettier": "prettier --single-quote --trailing-comma all --write \"src/**/*.js\"",
"precommit": "yarn run lint"
},
"dependencies": {
"hoist-non-react-statics": "^2.2.0",
"lodash": "^4.17.4",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"concurrently": "^3.4.0",
"coveralls": "^2.13.1",
"enzyme": "^2.9.1",
"eslint": "^4.4.1",
"eslint-config-callstack-io": "^0.4.1",
"flow-bin": "^0.40.0",
"husky": "^0.14.3",
"jest": "^19.0.2",
"npm-release": "^1.0.0",
"prettier": "^1.5.3",
"react": "16.0.0-alpha.6",
"react-native": "0.43.4",
"react-native-mock": "^0.3.1",
"rimraf": "^2.6.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"babel": {
"presets": [
[
"react-native"
]
],
"plugins": [
"transform-flow-strip-types",
"transform-object-rest-spread"
]
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./testSetup.js"
],
"collectCoverage": true
}
}