-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
117 lines (117 loc) · 3.25 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "react-github-corner",
"description": "Add a Github banner to your project page. A React version of: https://github.com/tholman/github-corners",
"version": "2.5.0",
"homepage": "https://github.com/skratchdot/react-github-corner/",
"files": [
"lib/",
"index.d.ts"
],
"main": "./lib/GithubCorner.js",
"author": {
"name": "skratchdot",
"url": "http://skratchdot.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skratchdot/react-github-corner.git"
},
"bugs": {
"url": "https://github.com/skratchdot/react-github-corner/issues"
},
"engines": {
"node": ">= 4.0.0"
},
"license": "MIT",
"scripts": {
"build": "npm-run-all clean format lint cover transpile webpack",
"clean": "npm-run-all clean:coverage clean:lib clean:build",
"clean:coverage": "rimraf coverage/",
"clean:lib": "rimraf lib/",
"clean:build": "rimraf build/",
"cover": "jest --coverage",
"predeploy": "npm run build",
"deploy": "gh-pages -d build/prod",
"format": "prettier --write --single-quote 'src/**/*.js' '*.js'",
"lint": "eslint src",
"test": "jest",
"transpile": "cross-env BABEL_ENV=production babel -s true --ignore test.js -d lib src/lib ",
"start": "webpack-dev-server",
"webpack": "npm-run-all webpack:dev webpack:prod",
"webpack:dev": "cross-env NODE_ENV=development webpack",
"webpack:prod": "cross-env NODE_ENV=production webpack"
},
"dependencies": {},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-react-remove-prop-types": "^0.4.15",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.24.1",
"bootstrap": "^3.3.6",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.6.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^3.0.2",
"gh-pages": "^3.1.0",
"html-loader": "^0.5.5",
"jest": "^23.6.0",
"jsdom": "^12.0.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"markdown-loader": "^4.0.0",
"npm-run-all": "^4.1.5",
"object-path-get": "^1.0.1",
"prettier": "^1.14.2",
"prop-types": "^15.6.2",
"react": "^16.5.1",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.5.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-test-renderer": "^16.5.1",
"redux": "^3.5.2",
"redux-devtools": "^3.4.1",
"redux-thunk": "^2.3.0",
"rimraf": "^2.6.2",
"url-loader": "^1.1.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.10.0"
},
"jest": {
"verbose": true,
"collectCoverageFrom": [
"src/lib/**/*.js"
],
"coverageReporters": [
"text-summary",
"html",
"json",
"lcovonly"
],
"setupTestFrameworkScriptFile": "<rootDir>/src/__testutils__/setup.js"
},
"keywords": [
"react",
"react-component",
"github",
"banner",
"corner",
"flag",
"header",
"href",
"link"
]
}