-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.65 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
{
"name": "react-copyright-notice-component",
"version": "0.1.1",
"description": "A React component to render copyright notices",
"main": "build/index.js",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"test": "npx jest",
"test:watch": "npx jest --watchAll",
"test:coverage": "npx jest --coverage"
},
"keywords": [
"copyright",
"date",
"microdata",
"react",
"react-component",
"year"
],
"author": "James Moon <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "^16.13.1"
},
"dependencies": {
"react": "^16.10.2",
"webpack": "^4.43.0"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-loader": "^8.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"microdata-node": "^2.0.0",
"prettier": "^2.0.5",
"react-dom": "^16.13.1",
"webpack-cli": "^3.3.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mooniker/react-copyright-notice-component.git"
},
"bugs": {
"url": "https://github.com/mooniker/react-copyright-notice-component/issues"
},
"homepage": "https://github.com/mooniker/react-copyright-notice-component#readme"
}