-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 735 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 735 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
{
"name": "react-alarm-clock",
"version": "0.1.0",
"description": "A React web alarm clock",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel app.jsx -o app.js",
"serve": "http-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dimotsai/react-alarm-clock.git"
},
"keywords": [
"alarm"
],
"author": "dimotsai",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dimotsai/react-alarm-clock/issues"
},
"homepage": "https://github.com/dimotsai/react-alarm-clock#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-react": "^6.16.0",
"http-server": "^0.9.0"
}
}