forked from thiagozanetti/react-moment-countdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "react-moment-countdown",
"version": "0.1.0",
"description": "An unopinionated countdown timer component for React.",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"prepublish": "npm run build",
"test": "ava --tap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagozanetti/react-moment-countdown.git"
},
"keywords": [
"react",
"component",
"countdown",
"javascript",
"es6"
],
"author": "Thiago Zanetti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thiagozanetti/react-moment-countdown/issues"
},
"homepage": "https://github.com/thiagozanetti/react-moment-countdown#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-preset-env": "^1.2.2",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"moment": "^2.18.1",
"react": "^15.4.2"
}
}