forked from namespace-ee/react-calendar-timeline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.16 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
{
"name": "react-calendar-timeline",
"version": "0.14.7",
"description": "react calendar timeline",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "npm run build:lib",
"build:demo": "echo '!!! Building Demo' && BABEL_ENV=react node build.js production",
"build:lib": "echo '!!! Building Library' && ./node_modules/.bin/babel src --out-dir lib && ./node_modules/.bin/node-sass src/lib/Timeline.scss lib/lib/Timeline.css && sed -i'.bak' 's/Timeline\\.scss/Timeline\\.css/g' lib/lib/Timeline.js && rm lib/lib/Timeline.js.bak",
"jest": "node_modules/.bin/jest",
"jest:update": "node_modules/.bin/jest -u",
"lint": "eslint --ext .js,.jsx src demo *.js",
"lint:fix": "eslint --ext .js,.jsx src demo *.js --fix",
"prepublish": "npm run build:lib",
"start": "./node_modules/.bin/webpack-dev-server --hot --host 0.0.0.0 --port 8080 --display-modules",
"test": "npm run build:lib && npm run jest && npm run lint"
},
"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": [
"Stanisław Chmiela <[email protected]>"
],
"license": "MIT",
"keywords": [
"react",
"reactjs",
"react-component",
"timeline"
],
"standard": {
"parser": "babel-eslint"
},
"jest": {
"verbose": true,
"testMatch": [
"**/__tests__/*.js"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "<rootDir>/src/mocks/styleMock.js"
}
},
"dependencies": {
"element-resize-detector": "^1.1.12",
"interact.js": "^1.2.6",
"react-pure-render": "^1.0.2"
},
"peerDependencies": {
"interact.js": "*",
"moment": "*",
"react": "^0.14.8 || ^15.0.1",
"react-dom": "^0.14.8 || ^15.0.1"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "~6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "~6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "~0.26.0",
"enzyme": "^2.8.2",
"es5-shim": "~4.5.9",
"eslint": "^3.10.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"faker": "^4.1.0",
"file-loader": "^0.11.2",
"jasmine": "~2.5.2",
"jasmine-core": "~2.5.2",
"jest": "^19.0.2",
"karma": "~1.3.0",
"karma-jasmine": "~1.0.2",
"karma-phantomjs-launcher": "~1.0.2",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~1.8.0",
"moment": "^2.11.1",
"node-sass": "^4.5.3",
"react": "^15.0.1",
"react-addons-perf": "^15.0.1",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.0.1",
"react-hot-loader": "^3.0.0-beta.6",
"rimraf": "^2.5.0",
"sass-loader": "~4.0.2",
"style-loader": "~0.13.0",
"webpack": "~1.13.3",
"webpack-dev-server": "~1.16.2"
}
}