-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
78 lines (78 loc) · 2.33 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
{
"name": "react-week-calendar",
"version": "0.1.3",
"description": "Week calendar on react",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && npm run build:js && npm run copy:less && npm run build:css && npm run build:examples",
"build:css": "lessc --clean-css src/style.less dist/style.css",
"build:examples": "webpack --progress -p",
"build:js": "babel src/ -d dist/",
"clean": "rimraf dist",
"clean:examples": "rimraf example/dist",
"copy:less": "ncp src/style.less dist/style.less",
"lint": "eslint ./src",
"start": "webpack-dev-server --progress",
"test": "mocha --require test/setup.js --reporter min \"test/*-test.js\"",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"prop-types": "^15.5.8"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"css-loader": "^3.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^11.3.0",
"less": "^3.8.1",
"less-loader": "^4.0.5",
"less-plugin-clean-css": "^1.5.1",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"moment": "^2.18.1",
"ncp": "^2.0.0",
"react": "^16.1.0",
"react-dom": "^16.1.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.2",
"sinon": "^4.0.0",
"style-loader": "^0.18.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.1"
},
"peerDependencies": {
"moment": "^2.18.1",
"react": "^15.3.0 || ^16.0",
"react-dom": "^15.3.0 || ^16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/birik/react-week-calendar.git"
},
"keywords": [
"react",
"calendar"
],
"author": "Evgeny Segeda <evgeny.segeda@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/birik/react-week-calendar/issues"
},
"homepage": "https://github.com/birik/react-week-calendar#readme"
}