forked from stephane-monnot/react-vertical-timeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.36 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
{
"name": "react-vertical-timeline-component",
"description": "Vertical timeline for React.js",
"author": "Stéphane Monnot",
"user": "stephane-monnot",
"version": "3.5.2",
"scripts": {
"test:lint": "eslint . --ignore-path .gitignore",
"test:lint:fix": "eslint --fix . --ignore-path .gitignore",
"gh-pages:deploy": "gh-pages -d docs/build",
"dist:css": "cleancss -o style.min.css style.css",
"dist:es6": "del-cli ./dist-es6 && cross-env BABEL_ENV=es6 babel ./src --out-dir ./dist-es6",
"dist:modules": "del-cli ./dist-modules && cross-env BABEL_ENV=modules babel ./src --out-dir ./dist-modules",
"preversion": "npm run test && npm run test:lint",
"prepublishOnly": "npm run dist:es6 && npm run dist:modules && npm run dist:css",
"postpublish": "npm run gh-pages && npm run gh-pages:deploy",
"postinstall": "node lib/post_install.js"
},
"main": "dist-modules",
"module": "dist-es6",
"jsnext:main": "dist-es6",
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.5.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"babel-jest": "^27.3.1",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"clean-css-cli": "^5.4.2",
"cross-env": "^7.0.2",
"del-cli": "^4.0.1",
"eslint": "^8.0.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.4.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.2",
"gh-pages": "^6.1.1",
"git-prepush-hook": "^1.0.2",
"prettier": "^2.0.5",
"purecss": "^2.0.3",
"react": "^18",
"react-dom": "^18",
"react-github-corner": "^2.3.0",
"replace": "^1.2.0",
"rimraf": "^3.0.2",
"sync-exec": "^0.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/skywalker08/react-vertical-timeline.git"
},
"files": [
"dist-modules/**/*",
"lib/**/*",
"style.min.css"
],
"keywords": [
"react",
"reactjs",
"React Vertical Timeline"
],
"license": "MIT",
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react-intersection-observer": "^8.26.2"
},
"browserslist": [
"last 2 versions",
"> 1%",
"IE 11"
]
}