forked from giladaya/react-fully-scrolled
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.61 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
{
"name": "custom-react-fully-scrolled",
"version": "1.2.0",
"description": "This is a custom version of react-fully-scrolled! It contains a couple improvements from its original. If you want the original, go to react-fully-scrolled by giladaya",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && npm clean-demo",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"test:lint": "node_modules/eslint/bin/eslint.js src --ext .js --ext .jsx --cache",
"prepublish": "npm run build",
"gh-pages:deploy": "nwb build-demo && node_modules/gh-pages/bin/gh-pages -d demo/dist"
},
"dependencies": {
"prop-types": ">15.4.1",
"react": ">15.4.1",
"react-dom": ">15.4.1"
},
"peerDependencies": {
"react": "15.x",
"react-dom": "15.x"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"gh-pages": "^0.12.0",
"nwb": "^0.18.0"
},
"author": "Gilad Dayagi",
"homepage": "https://giladaya.github.io/react-fully-scrolled/",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/giladaya/react-fully-scrolled.git"
},
"keywords": [
"react-component",
"full-page",
"scroll"
]
}