forked from namespace-ee/react-calendar-timeline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 3.13 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
{
"name": "react-calendar-timeline",
"version": "0.11.0",
"description": "react calendar timeline",
"main": "modules/index.js",
"scripts": {
"clean": "rimraf -rf ./build",
"watch": "npm run clean && node scripts/watch.js",
"build": "npm run clean && npm run build:dev && npm run build:prod",
"build:dev": "echo 'DEV - BUILD' && webpack --config webpack.config.js",
"build:prod": "echo 'PROD - BUILD' && webpack --config webpack.config.prod.js",
"release": "npm run build && babel src --out-dir build && cp README.md build/ && node scripts/release.js",
"module": "./node_modules/.bin/babel src --out-dir modules && sass src/lib/Timeline.scss:modules/lib/Timeline.css && sed -i'.bak' 's/Timeline\\.scss/Timeline\\.css/g' modules/lib/Timeline.js && rm modules/lib/Timeline.js.bak",
"lint": "eslint --ext .js,.jsx src",
"lintfix": "eslint --ext .js,.jsx src --fix",
"upgrade:patch": "npm version patch",
"preversion": "npm run module && npm run lint",
"postversion": "git push origin `git rev-parse --abbrev-ref HEAD` && git push origin `git describe`",
"npm:publish:next": "npm run release && cd build && npm publish --tag next",
"npm:publish:latest": "npm run release && cd build && npm publish",
"info": "npm info react-calendar-timeline",
"start": "./node_modules/.bin/webpack-dev-server --inline --hot --host 0.0.0.0"
},
"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"
},
"dependencies": {
"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-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",
"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",
"jasmine": "~2.5.2",
"jasmine-core": "~2.5.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": "^3.4.2",
"react": "^15.0.1",
"react-addons-perf": "^15.0.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"
}
}