-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.17 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
{
"name": "react-monthly-events",
"version": "0.0.7",
"description": "The react js component to display calendar with events in given month.",
"main": "build/index.js",
"scripts": {
"test": "jest --watch",
"lint-fix": "eslint -c .eslintrc.js --fix --quiet --ext .jsx --ext .js src/ tests/",
"lint-ci": "eslint -c .eslintrc.js --ext .jsx --ext .js src/ tests/",
"test-ci": "jest --coverage --no-cache",
"build": "babel src -d build --copy-files",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/lzakrzewski/react-monthly-events.git"
},
"keywords": [
"react",
"reactjs",
"react-component",
"calendar",
"event-calendar",
"monthly-events"
],
"author": "Łukasz Zakrzewski <[email protected]> (lzakrzewski.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lzakrzewski/react-monthly-events/issues"
},
"homepage": "https://github.com/lzakrzewski/react-monthly-events#readme",
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"transform": {
"^.+\\.jsx$": "babel-jest",
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"src"
],
"setupTestFrameworkScriptFile": "./tests/setupTests.js",
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/tests/__mocks__/styleMock.js"
}
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.2.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.1.18",
"chai": "^3.5.0",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.7.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^22.4.3",
"jsdom": "^8.1.0",
"mocha": "^5.2.0",
"react-dom": "16.3.2",
"style-loader": "^0.21.0"
},
"dependencies": {
"moment": "2.x",
"lodash": "4.x",
"react": "16.x"
}
}