-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathpackage.json
39 lines (39 loc) · 927 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
34
35
36
37
38
39
{
"name": "fecha",
"version": "2.2.0",
"description": "Date formatting and parsing",
"main": "fecha.js",
"scripts": {
"test": "eslint fecha.js fecha.strict.js && nyc --cache --reporter=text painless test.*",
"build": "uglifyjs fecha.js -m -o fecha.min.js && uglifyjs fecha.strict.js -m -o fecha.strict.min.js"
},
"repository": {
"type": "git",
"url": "https://taylorhakes@github.com/taylorhakes/fecha.git"
},
"keywords": [
"date",
"parse",
"moment",
"format",
"fecha",
"formatting"
],
"author": "Taylor Hakes",
"license": "MIT",
"bugs": {
"url": "https://github.com/taylorhakes/fecha/issues"
},
"homepage": "https://github.com/taylorhakes/fecha",
"devDependencies": {
"eslint": "^2.4.0",
"nyc": "^5.6.0",
"painless": "^0.9.1",
"uglify-js": "^2.6.1"
},
"files": [
"fecha.js",
"fecha.min.js"
],
"types": "./fecha.d.ts"
}