This repository was archived by the owner on Jun 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"name": "react-animation-frame",
"version": "1.0.2",
"description": "A React higher-order component for managing recurring animation frames",
"repository": "https://github.com/jamesseanwright/react-animation-frame",
"main": "dist/AnimationFrameComponent.js",
"scripts": {
"build": "babel --out-dir dist src",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepare": "npm run build",
"pretest": "eslint --ext js --ext jsx src test",
"test": "mocha",
"test-with-coverage": "npm run pretest && nyc --extension .jsx mocha"
},
"author": "James Wright <james@jamesswright.co.uk>",
"license": "ISC",
"keywords": [
"react",
"requestAnimationFrame",
"higher-order component",
"hoc"
],
"devDependencies": {
"babel-cli": "6.23.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.23.0",
"chai": "3.5.0",
"coveralls": "2.12.0",
"enzyme": "3.1.0",
"enzyme-adapter-react-16": "1.6.0",
"eslint": "3.17.1",
"eslint-plugin-react": "7.4.0",
"jsdom": "9.11.0",
"mocha": "3.2.0",
"mock-raf": "1.0.0",
"nyc": "11.2.1",
"react": "16.6.1",
"react-dom": "16.6.1",
"react-test-renderer": "16.0.0",
"sinon": "1.17.7"
},
"peerDependencies": {
"react": "~16 || ~15"
}
}