-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.17 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
{
"name": "reactjs-counter",
"version": "0.5.0",
"description": "A simple counter component which increments/decrements a count to a given value with easing.",
"main": "lib/index.js",
"scripts": {
"dev": "watch 'npm run build' src",
"build": "rimraf lib/* && babel src -d lib/",
"build:docs": "rimraf docs/js/* && webpack --config webpack.config.docs.js",
"docs": "webpack-dev-server --config webpack.config.docs.js",
"prepare": "npm run build",
"flow": "flow",
"test": "jest",
"test:watch": "npm test -- --watch",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sudkumar/reactjs-counter.git"
},
"files": [
"lib"
],
"keywords": [
"react",
"counter",
"ease"
],
"author": "Sudhir Mitharwal",
"license": "ISC",
"bugs": {
"url": "https://github.com/sudkumar/reactjs-counter/issues"
},
"homepage": "https://github.com/sudkumar/reactjs-counter#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.47",
"@babel/core": "^7.0.0-beta.47",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.47",
"@babel/preset-flow": "^7.0.0-beta.47",
"@babel/preset-react": "^7.0.0-beta.47",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^8.0.0-beta.3",
"eslint": "^4.13.1",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.61.0",
"html-webpack-inline-chunk-plugin": "^1.1.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.4.4",
"np": "^2.18.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"watch": "^1.0.2",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.11.2"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0",
"react-dom": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0"
},
"dependencies": {
"core-js": "^2.5.3",
"raf": "^3.4.0"
}
}