-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.33 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "smartdate",
"version": "0.9.1",
"description": "smartdate.js - localized human-friendly datetime in browser",
"main": "smartdate.js",
"repository": {
"type": "git",
"url": "https://github.com/ivelum/smartdate.git"
},
"scripts": {
"start": "node_modules/.bin/webpack --watch -d test/tests.js test/testBundle.js",
"build": "node_modules/.bin/webpack -d test/tests.js test/testBundle.js",
"phantom": "node_modules/.bin/webpack -d test/tests.js test/testBundle.js && node_modules/.bin/mocha-phantomjs -p node_modules/.bin/phantomjs test/tests.html",
"uglify": "cat smartdate.js | node_modules/.bin/uglifyjs -cm > smartdate.min.js"
},
"devDependencies": {
"expect.js": "~0.3.1",
"merge": "~1.2.0",
"mocha": "~1.20.0",
"mocha-phantomjs": "~3.5.3",
"phantomjs": "~1.9.13",
"uglify-js": "2.6.0",
"webpack": "~1.5.1"
},
"keywords": [
"smartdate"
],
"author": {
"name": "Denis Stebunov",
"url": "https://github.com/stebunovd"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/ivelum/smartdate/master/LICENSE"
}
],
"files": [
"smartdate.js",
"smartdate.min.js",
"LICENSE"
],
"bugs": {
"url": "https://github.com/ivelum/smartdate/issues"
},
"homepage": "https://github.com/ivelum/smartdate"
}