-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1009 Bytes
/
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
{
"name": "just-date",
"version": "3.1.3",
"description": "Helper for dealing with JS dates independent of time or timezone.",
"main": "index.js",
"scripts": {
"test": "eslint index.js && tape ./test/index.js | tap-spec",
"test-browser": "browserify test/index.js > test/browser/test_bundle.js && start chrome .\\test\\browser\\index.html",
"build": "gluejs --include index.js --out dist/just-date.js --global JustDate --amd && uglifyjs dist/just-date.js -o dist/just-date.min.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ismyrnow/just-date.git"
},
"keywords": [
"date",
"timezone",
"iso"
],
"author": "Ishmael Smyrnow",
"license": "MIT",
"bugs": {
"url": "https://github.com/ismyrnow/just-date/issues"
},
"homepage": "https://github.com/ismyrnow/just-date#readme",
"devDependencies": {
"eslint": "^1.2.0",
"gluejs": "^2.3.9",
"tap-spec": "^4.0.2",
"tape": "^4.2.0",
"uglifyjs": "^2.4.10"
}
}