forked from sungwoncho/react-cntdwn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 898 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 898 Bytes
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
{
"name": "react-cntdwn",
"version": "0.4.0",
"description": "A simple, customizable countdown timer for React",
"main": "dist/cntdwn.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "./node_modules/.bin/babel src/ -d dist/",
"prepublish": "npm run-script compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sungwoncho/react-cntdwn.git"
},
"keywords": [
"react-component",
"timer",
"countdown",
"react"
],
"author": "Sung Won Cho <mikeswcho@gmail.com> (https://sungwoncho.io/)",
"license": "MIT",
"devDependencies": {
"babel": "^6.3.13",
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"chai": "^3.4.1",
"mocha": "^2.3.4"
},
"dependencies": {
"moment": "^2.12.0",
"react": "^0.14.0 || ^15.0.0"
}
}