forked from miguelmota/react-countdown-moment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 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
{
"name": "react-countdown-moment",
"version": "0.0.4",
"description": "React coundown timer text using momentjs.",
"main": "index.js",
"scripts": {
"prepublish": "babel --plugins transform-es2015-modules-umd src --ignore __tests__ --out-dir ./dist",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "watchify -t [ babelify --presets [ es2015 react ] ] example/example.js -o example/dist/bundle.js",
"build": "browserify -t [ babelify --presets [ es2015 react ] ] example/example.js -o example/dist/bundle.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"watchify": "^3.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/react-countdown-moment"
},
"keywords": [
"react",
"countdown",
"moment"
],
"author": {
"name": "Miguel Mota",
"email": "[email protected]",
"url": "https://miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/react-countdown-moment/blob/master/LICENSE.md"
},
"bugs": {
"url": "https://github.com/miguelmota/react-countdown-moment/issues"
},
"homepage": "https://github.com/miguelmota/react-countdown-moment",
"engines": {
"node": ">=7"
},
"dependencies": {
"left-pad": "^1.1.3",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1"
}
}