forked from glennreyes/react-countup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.88 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
{
"name": "react-countup",
"version": "1.2.0",
"description": "A React component wrapper around CountUp.js",
"author": "Glenn Reyes",
"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": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prebuild": "npm t && npm run clean",
"build": "cross-env NODE_ENV=production babel src -d lib",
"build:demo": "npm run clean && npm run build && cross-env NODE_ENV=production webpack -p --config webpack.config.prod --progress",
"clean": "npm run clean:lib && npm run clean:demo",
"clean:lib": "rimraf lib",
"clean:demo": "rimraf build",
"coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls",
"deploy": "npm run build:demo && npm run deploy:demo",
"deploy:demo": "gh-pages -d build",
"prepublish": "npm run build",
"lint": "eslint .",
"pretest": "npm run lint",
"start": "node server",
"test": "cross-env NODE_ENV=test mocha --opts mocha.opts",
"test:watch": "npm t -- --watch",
"test:coverage": "cross-env NODE_ENV=test istanbul cover _mocha --report lcovonly -- -R spec --opts mocha.opts"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"dependencies": {
"countup.js": "^1.7.1",
"react": "^15.3.1",
"react-dom": "^15.3.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "^2.11.12",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"cssnano": "^3.7.4",
"enzyme": "^2.4.1",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"expect": "^1.20.2",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.0.0-beta.3",
"gh-pages": "^0.11.0",
"highlight.js": "^9.6.0",
"html-webpack-plugin": "^2.22.0",
"istanbul": "^1.0.0-alpha.2",
"jsdom": "^9.5.0",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.2.0",
"postcss-cssnext": "^2.8.0",
"postcss-loader": "^0.13.0",
"react-addons-test-utils": "^15.3.1",
"react-highlight.js": "^1.0.5",
"rimraf": "^2.5.4",
"sanitize.css": "^4.1.0",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.22",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2"
}
}