This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.83 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
{
"name": "react-waypoint-decorator",
"version": "2.0.0",
"description": "Decorator to apply waypoints to React components",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"bundle": "webpack",
"demo": "webpack --watch --config demo/webpack.config.js & lite-server --baseDir=\"demo\"",
"lint": "eslint **/*.js",
"prepublishOnly": "npm run test && npm run bundle",
"run-tests": "mocha-puppeteer test/*.js",
"test": "npm run lint && npm run run-tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ueno-llc/react-waypoint-decorator.git"
},
"keywords": [
"react",
"waypoint",
"decorator",
"scroll",
"trigger"
],
"author": "ueno. <hi@ueno.co> (http://ueno.co)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ueno-llc/react-waypoint-decorator/issues"
},
"homepage": "https://github.com/ueno-llc/react-waypoint-decorator#readme",
"dependencies": {
"prop-types": "^15.6.2",
"react-display-name": "^0.2.4",
"react-waypoint": "^7.3.4"
},
"devDependencies": {
"@ueno/eslint-config": "^1.2.8",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-airbnb": "^3.0.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^3.5.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.8.0",
"growl": "^1.10.5",
"lasso-babel-transform": "^1.0.2",
"mocha-puppeteer": "^0.13.0",
"randomatic": "^3.1.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-test-renderer": "^16.4.1",
"webpack": "^4.23.1"
},
"peerDependencies": {
"react": ">=16.2.0"
},
"engines": {
"node": ">=4"
},
"xo": {
"space": true
}
}