-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.12 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
{
"name": "react-github-renderer",
"version": "0.1.0",
"description": "A react custom renderer for Github",
"main": "dist/react-github-renderer.js",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"react",
"renderer",
"custom renderer",
"react custom renderer"
],
"repository": {
"type": "git",
"url": "https://github.com/taehwanno/react-github-renderer.git"
},
"bugs": {
"url": "https://github.com/taehwanno/react-github-renderer/issues"
},
"author": "Taehwan, No <taehwanno.dev@gmail.com> (https://github.com/taehwanno)",
"homepage": "https://github.com/taehwanno/react-github-renderer",
"scripts": {
"build:dev": "cross-env NODE_ENV=development rollup -c -i src/index.js -o dist/react-github-renderer.js",
"build:prod": "cross-env NODE_ENV=production rollup -c -i src/index.js -o dist/react-github-renderer.min.js",
"build": "npm run clean && run-p build:**",
"clean": "rimraf dist es lib",
"lint": "eslint src tests",
"precommit": "lint-staged",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage"
},
"lint-staged": {
"*.{js,jsx}": "eslint"
},
"dependencies": {
"invariant": "^2.2.2",
"react-reconciler": "^0.6.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.1.1",
"eslint": "^4.12.0",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^5.0.0",
"npm-run-all": "^4.1.2",
"react": "^16.1.1",
"rimraf": "^2.6.2",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"peerDependencies": {
"react": "^16.0.0"
}
}