-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "react-page-slider",
"version": "1.3.0",
"description": "To insert an overlay in a page for a customized experience",
"main": "lib/index.min.js",
"scripts": {
"start": "npm run compile && webpack-dev-server",
"build": "babel ./modules -d lib",
"test": "npm run lint",
"lint": " eslint --ignore-path .gitignore modules/* examples/*",
"compile": "webpack --config=webpack.build.config.js",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/chunkiat82/react-page-slider.git"
},
"keywords": [
"react",
"page",
"slider"
],
"author": "Raymond Ho",
"license": "MIT",
"bugs": {
"url": "https://github.com/chunkiat82/react-page-slider/issues"
},
"homepage": "https://github.com/chunkiat82/react-page-slider",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"eslint": "^1.9.0",
"eslint-plugin-react": "^3.8.0",
"html-webpack-plugin": "^1.6.2",
"path": "^0.12.7",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
}
}