forked from glennreyes/react-countup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.67 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
{
"name": "react-countup",
"version": "3.0.3",
"description": "A React component wrapper around CountUp.js",
"author": "Glenn Reyes <[email protected]> (https://twitter.com/glnnrys)",
"keywords": [
"react-component",
"react",
"react.js",
"countup",
"countup.js",
"counter",
"animation"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/glennreyes/react-countup.git"
},
"bugs": {
"url": "https://github.com/glennreyes/react-countup/issues"
},
"homepage": "https://glennreyes.github.io/react-countup",
"main": "build",
"files": [
"build",
"src"
],
"scripts": {
"build": "babel src -d build --ignore __tests__",
"flow": "flow check",
"lint": "eslint src",
"precommit": "lint-staged",
"prepare": "yarn run build",
"prettier": "prettier --write src/**/*.js",
"test": "jest"
},
"peerDependencies": {
"react": "^16.0.0"
},
"dependencies": {
"countup.js": "^1.9.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.59.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^5.0.0",
"prettier": "^1.8.2",
"raf": "^3.4.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-test-renderer": "^16.1.1"
}
}