-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.2 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.2 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "react-native-minimalist",
"version": "0.0.0-semantically-released",
"description": "",
"main": "build/index.js",
"scripts": {
"commit": "git-cz",
"build": "babel src --out-dir build",
"size": "size-limit",
"prepublish": "npm run build",
"test": "jest --forceExit",
"test:watch": "jest --watch --coverage=false",
"test:coverage": "jest --coverage",
"report:coverage": "jest && codecov",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o storybook",
"toc": "doctoc README.md",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "https://github.com/applification/react-native-minimalist.git"
},
"keywords": ["react", "native", "elements", "minimalist"],
"author": "Dave Hudson <dave@applification.net> (http://applification.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/applification/react-native-minimalist/issues"
},
"homepage": "https://github.com/applification/react-native-minimalist#readme",
"devDependencies": {
"@storybook/addon-actions": "^3.4.1",
"@storybook/addon-links": "^3.4.1",
"@storybook/addons": "^3.4.1",
"@storybook/react": "^3.4.1",
"all-contributors-cli": "4.11.1",
"art": "0.10.2",
"babel": "^6.23.0",
"babel-cli": "6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-react-native-web": "^0.6.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react-native": "^4.0.0",
"babel-runtime": "^6.26.0",
"codecov": "3.0.0",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"eslint": "4.19.0",
"eslint-plugin-react": "7.7.0",
"eslint-plugin-react-native": "3.2.1",
"ghooks": "2.0.2",
"jest": "22.4.2",
"jest-cli": "22.4.2",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-native": "^0.54.2",
"react-native-auto-height-image": "1.0.0",
"react-native-minimalist-icons": "1.0.1",
"react-native-web": "0.6.0",
"react-primitives": "0.5.0",
"react-test-renderer": "^16.2.0",
"semantic-release": "^15.1.2",
"size-limit": "0.17.0",
"travis-deploy-once": "^4.4.1",
"webpack": "3.10.0"
},
"dependencies": {},
"size-limit": [
{
"path": "build/index.js"
}
],
"jest": {
"preset": "react-native",
"testRegex": "src/.*.test.js$",
"setupFiles": ["./jestsetup.js"],
"transformIgnorePatterns": ["node_modules/(?!react-native)"],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/index.js",
"!<rootDir>/node_modules/",
"!<rootDir>/path/to/dir/"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test:coverage"
}
}
}