This repository has been archived by the owner on Apr 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"name": "react-dual-timeline",
"version": "0.3.0",
"description": "Timeline Component for React",
"keywords": [
"react",
"timeline",
"component",
"dual",
"two-sided"
],
"repository": "https://github.com/ftes/react-dual-timeline.git",
"author": "Fredrik Teschke",
"license": "MIT",
"bugs": {
"url": "https://github.com/ftes/react-dual-timeline/issues"
},
"homepage": "https://github.com/ftes/react-dual-timeline#readme",
"main": "dist",
"scripts": {
"build": "babel src --out-dir dist",
"patch": "npm run build && git add dist && git commit -m 'build new dist' && npm version patch && npm publish && git push",
"dev": "babel src --out-dir dist --watch",
"build-example": "webpack -p --config=webpack.prod.config.js",
"dev-example": "webpack-dev-server --host 0.0.0.0 --hot --inline",
"test": "jest",
"start": "npm run dev-example"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.17.0",
"eslint-plugin-jasmine": "^2.9.1",
"eslint-plugin-react": "^7.6.1",
"jest": "^22.1.4",
"jest-cli": "^22.1.4",
"radium": "^0.21.2",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
},
"dependencies": {
"prop-types": "^15.6.0"
}
}