forked from namespace-ee/react-calendar-timeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
155 lines (155 loc) · 4.24 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "react-calendar-timeline",
"version": "0.26.7",
"description": "react calendar timeline",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:lib",
"build:demo": "echo '!!! Building Demo' && cross-env NODE_ENV=production webpack --progress",
"build:lib": "echo '!!! Building Library' && rimraf lib && cross-env NODE_ENV=production babel src --out-dir lib && node-sass src/lib/Timeline.scss lib/Timeline.css && sed -i'.bak' 's/Timeline\\.scss/Timeline\\.css/g' lib/lib/Timeline.js && rm lib/lib/Timeline.js.bak",
"lint": "eslint --ext .js --ext .jsx ./src",
"lint:fix": "prettier-eslint --parser babylon --write \"src/**/*.js\"",
"prepublish": "npm run build:lib",
"start": "webpack-dev-server --hot --host 0.0.0.0 --display-modules",
"test": "jest",
"test:watch": "jest --watch"
},
"files": [
"lib",
"src"
],
"homepage": "https://github.com/namespace-ee/react-calendar-timeline",
"repository": {
"type": "git",
"url": "https://github.com/namespace-ee/react-calendar-timeline.git"
},
"author": "Marius Andra <[email protected]>",
"contributors": [
{
"name": "Stanisław Chmiela",
"email": "[email protected]"
},
{
"name": "Mike Joyce",
"url": "https://github.com/mcMickJuice"
},
{
"name": "Samuel Rossetti"
},
{
"name": "amakhrov",
"url": "https://github.com/amakhrov"
},
{
"name": "Ahmad Ilaiwi",
"url": "https://github.com/Ilaiwi"
},
{
"name": "dkarnutsch",
"url": "https://github.com/dkarnutsch"
},
{
"name": "Alex Maclean",
"url": "https://github.com/acemac"
},
{
"name": "Kevin Mann",
"url": "https://github.com/kevinmanncito"
}
],
"license": "MIT",
"keywords": [
"react",
"reactjs",
"react-component",
"timeline"
],
"standard": {
"parser": "babel-eslint"
},
"jest": {
"verbose": true,
"testMatch": [
"**/__tests__/**/*.js"
],
"setupFilesAfterEnv": [
"<rootDir>/config/jest-setup.js"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"modulePaths": [
"<rootDir>/src/",
"<rootDir>/__tests__"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/__tests__/test-utility"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"dependencies": {
"classnames": "^2.2.6",
"create-react-context": "^0.2.2",
"element-resize-detector": "^1.1.12",
"lodash.isequal": "^4.5.0",
"memoize-one": "^5.1.1"
},
"peerDependencies": {
"interactjs": "^1.3.4",
"moment": "*",
"prop-types": "^15.6.2",
"react": ">=16.3",
"react-dom": ">=16.3"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.2",
"@babel/preset-env": "^7.5.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-react-remove-properties": "^0.3.0",
"cross-env": "^5.1.4",
"css-loader": "~0.26.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^4.16.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-jest": "^21.6.1",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^2.0.1",
"faker": "^4.1.0",
"interactjs": "^1.3.4",
"jest": "^24.8.0",
"jest-dom": "^3.5.0",
"jest-watch-typeahead": "^0.3.1",
"jsdom": "^11.5.1",
"moment": "^2.11.1",
"node-sass": "^4.12.0",
"prettier": "^1.10.2",
"prettier-eslint-cli": "^4.7.0",
"prop-types": "^15.6.2",
"randomcolor": "^0.5.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.1.1",
"react-testing-library": "^6.0.3",
"regenerator-runtime": "^0.13.2",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.3",
"style-loader": "~0.13.0",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}