-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
99 lines (99 loc) · 2.86 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-sentinel",
"version": "0.2.0",
"description": "React Component that abstracts away requestAnimationFrame and requestIdleCallback.",
"main": "dist/react-sentinel.browser.js",
"browser": "dist/react-sentinel.browser.js",
"module": "dist/react-sentinel.browser.js",
"scripts": {
"release": "generate-release",
"develop": "rollup -c -w",
"build": "NODE_ENV=production rollup -c",
"test": "yarn build && jest",
"lint": "eslint src",
"gh-pages": "yarn build && gh-pages --dist ./example",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YurkaninRyan/react-sentinel.git"
},
"keywords": [
"React",
"Polling",
"requestAnimationFrame",
"Render Props",
"Component"
],
"author": "Ryan Yurkanin",
"license": "MIT",
"bugs": {
"url": "https://github.com/YurkaninRyan/react-sentinel/issues"
},
"homepage": "https://ryanyurkan.in/react-sentinel",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"generate-release": "^1.1.1",
"gh-pages": "^1.1.0",
"http-server": "^0.11.1",
"jest": "^23.0.0",
"node-sass": "^4.9.0",
"prop-types": "^15.6.1",
"re-resizable": "^4.4.8",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-router-dom": "^4.2.2",
"rollup": "^0.59.3",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-includepaths": "^0.2.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.6.1",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-uglify": "^4.0.0"
},
"dependencies": {},
"config": {
"generateRelease": {
"no_confirm": false,
"skip_git_pull": false,
"skip_git_push": false,
"skip_git_flow_finish": false,
"release_message": true,
"remote": "origin",
"pre_commit_commands": [
"yarn test",
"yarn lint"
],
"post_complete_commands": [
"yarn gh-pages"
],
"files_to_version": [
"./README.md",
"./package.json"
]
}
},
"peerDependencies": {
"prop-types": "^15.6.1",
"react": "^16.4.0"
}
}