-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
102 lines (102 loc) · 3.02 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
{
"author": "Jason Salzman",
"name": "react-add-to-calendar",
"description":
"A simple and reusable add to calendar button component for React",
"version": "0.1.5",
"license": "MIT",
"homepage": "https://github.com/jasonsalzman/react-add-to-calendar",
"repository": {
"type": "git",
"url": "https://github.com/jasonsalzman/react-add-to-calendar.git"
},
"bugs": {
"url": "https://github.com/jasonsalzman/react-add-to-calendar/issues"
},
"main": "dist/react-add-to-calendar.min.js",
"style": "dist/react-add-to-calendar.min.css",
"files": ["*.md", "dist", "lib"],
"keywords": [
"react",
"add-to-calendar",
"calendar",
"event",
"react-component"
],
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-airbnb": "^2.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"codecov": "^2.2.0",
"create-react-class": "^15.5.3",
"css-loader": "^0.28.2",
"enzyme": "^3.2.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.15.3",
"extract-text-webpack-plugin": "^1.0.1",
"grunt": "1.0.1",
"grunt-babel": "^6.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-sass": "1.0.0",
"grunt-contrib-watch": "1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-karma": "^2.0.0",
"grunt-scss-lint": "^0.5.0",
"grunt-webpack": "^1.0.18",
"highlight.js": "^9.11.0",
"istanbul-instrumenter-loader": "^2.0.0",
"jsdom": "^9.12.0",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.1",
"lodash": "^4.17.4",
"mocha": "^3.4.1",
"mocha-jsdom": "^1.1.0",
"node-sass": "^4.7.2",
"prop-types": "^15.5.10",
"react": "^16.2.0",
"react-docgen": "^2.15.0",
"react-dom": "^16.2.0",
"react-transform-hmr": "^1.0.4",
"sass-loader": "^4.1.1",
"sinon": "^1.17.7",
"style-loader": "^0.18.0",
"webpack": "^1.15.0",
"webpack-dev-middleware": "^1.10.2",
"webpack-dev-server": "^1.16.4",
"webpack-hot-middleware": "^2.18.0"
},
"peerDependencies": {
"react": "^15.5.4 || ^16.0.0",
"react-dom": "^15.5.4 || ^16.0.0"
},
"optionalDependencies": {
"moment": "^2.18.1"
},
"scripts": {
"build": "NODE_ENV=production grunt build",
"start": "node server.js",
"test": "NODE_ENV=test grunt travis",
"eslint": "eslint **/*.js",
"prepublish": "npm run build",
"codecov": "cat coverage/*/lcov.info | ./node_modules/codecov/bin/codecov"
}
}