-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
61 lines (61 loc) · 1.98 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
{
"name": "react-add-to-calendar-hoc",
"version": "1.0.10",
"description": "Simple Unopinionated React Add to Calendar Button. Bring your own components.",
"main": "lib/index.js",
"scripts": {
"dev": "concurrently \"npm run lib:watch\" \"npm run docs\"",
"lib": "babel src/lib -d lib --ignore 'src/lib/**/*.test.js'",
"lib:watch": "babel src/lib -w -d lib --ignore 'src/lib/**/*.test.js'",
"docs": "webpack-dev-server --mode development",
"docs:prod": "webpack --mode production",
"test": "jest --coverage"
},
"keywords": [],
"license": "MIT",
"peerDependencies": {
"react": "^15.3.0 || ^16.2.0",
"react-dom": "^15.3.0 || ^16.2.0"
},
"dependencies": {
"core-js": "^2.5.7",
"prop-types": "^15.6.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.49",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.46",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-react": "^7.0.0-beta.46",
"babel-core": "^7.0.0-0",
"babel-jest": "^23.0.1",
"babel-loader": "^8.0.0-beta.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.1",
"coveralls": "^3.0.1",
"css-loader": "^0.28.11",
"emotion": "^9.1.3",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.1.0",
"luxon": "^1.4.4",
"moment-timezone": "^0.5.21",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-highlight": "^0.12.0",
"react-modal": "^3.4.5",
"react-syntax-highlighter": "^7.0.4",
"react-test-renderer": "^16.4.0",
"style-loader": "^0.21.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
},
"author": "Jason Leibowitz <[email protected]>",
"homepage": "http://leibowitz.me/react-add-to-calendar-hoc/",
"repository": {
"type": "git",
"url": "[email protected]:jasonleibowitz/react-add-to-calendar-hoc.git"
}
}