-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 805 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 805 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
36
37
{
"name": "clockbox",
"version": "1.0.7",
"description": "A time-based data store",
"main": "./dist/index.js",
"scripts": {
"test": "mocha --compilers js:babel/register",
"prepublish": "./node_modules/.bin/babel -d dist lib",
"postinstall": "./node_modules/.bin/babel -d dist lib"
},
"repository": {
"type": "git",
"url": "https://github.com/space150/clockbox"
},
"keywords": [
"time",
"date",
"data"
],
"author": "Mike Anderson, space150",
"license": "MIT",
"bugs": {
"url": "https://github.com/space150/clockbox/issues"
},
"homepage": "https://github.com/space150/clockbox",
"dependencies": {
"babel": "4.0.1"
},
"devDependencies": {
"mocha": "^2.1.0"
},
"browserify": {
"transform": [
"babelify"
]
}
}