-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 904 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 904 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": "@cleverbeagle/dates",
"version": "0.5.1",
"description": "Date and time helpers using moment and moment-timezone.",
"main": "index.js",
"scripts": {
"build": "babel --presets latest src -d ./ --ignore src/index.test.js",
"dev": "babel --presets latest src -d ./ --watch --ignore src/index.test.js",
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cleverbeagle/dates"
},
"keywords": [
"npm",
"package",
"template"
],
"author": "cleverbeagle",
"license": "MIT",
"bugs": {
"url": "https://github.com/cleverbeagle/dates/issues"
},
"homepage": "http://cleverbeagle.com/packages/dates/usage",
"dependencies": {
"moment": "^2.18.1",
"moment-timezone": "^0.5.13"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"jest": "^20.0.3"
}
}