forked from zwug/react-full-page
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 KB
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
{
"name": "react-full-page",
"version": "0.1.5",
"description": "Full page scrolling with React",
"main": "./lib",
"directories": {
"example": "examples"
},
"scripts": {
"start": "webpack-dev-server",
"test": "eslint src",
"example": "webpack -p",
"prepublish": "./node_modules/.bin/babel ./src --out-dir ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zwug/react-full-page.git"
},
"author": "Kirill Mironov",
"license": "MIT",
"bugs": {
"url": "https://github.com/zwug/react-full-page/issues"
},
"homepage": "https://github.com/zwug/react-full-page#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"html-webpack-plugin": "^2.30.1",
"prop-types": "^15.6.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
}
}