forked from BelkaLab/react-yearly-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.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
{
"name": "react-yearly-calendar",
"version": "1.2.6",
"description": "A yearly calendar built in React.js",
"repository": {
"type": "git",
"url": "[email protected]:BelkaLab/react-yearly-calendar"
},
"main": "./lib/index.js",
"scripts": {
"clean": "rm -rf lib dist",
"build": "babel src --out-dir lib",
"prepublish": "NODE_ENV=development; npm run lint && npm run prettify && npm run build",
"prettify": "prettier --config .prettierrc --write \"src/**/*.js\"",
"lint": "eslint --config .eslintrc src/",
"lint:fix": "eslint --fix --config .eslintrc src/"
},
"keywords": [
"react",
"react.js",
"calendar",
"year",
"yearly",
"react-component"
],
"author": "Belka <[email protected]> (https://belkadigital.com/)",
"license": "MIT",
"dependencies": {
"moment": "^2.13.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-moment-proptypes": "^1.5.0"
},
"devDependencies": {
"babel-cli": "^6.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.1.2",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"prettier": "^1.7.4"
}
}