forked from hogart/datef
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 KB
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
{
"name": "datef",
"version": "3.0.0",
"description": "Simple date formatting library with i10n, both for browser and node.js",
"author": "Konstantin Kitmanov <doctor.hogart@gmail.com>",
"contributors": [
{
"name": "Maxim Ponomarev",
"email": "maxvipon@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/maxvipon/datef.git"
},
"bugs": {
"url": "https://github.com/maxvipon/datef/issues"
},
"keywords": [
"moment",
"date",
"time",
"format",
"l10n"
],
"license": "MIT",
"main": "datef.js",
"devDependencies": {
"mocha": "1.x",
"chai": "1.x",
"istanbul": "0.2.x",
"jshint": "2.x",
"jscs": "1.4.x"
},
"scripts": {
"test": "npm run-script jshint && npm run-script check-style && npm run-script unit-test-coverage",
"jshint": "./node_modules/.bin/jshint .",
"unit-test": "./node_modules/.bin/mocha -u bdd -R spec --recursive test",
"unit-test-coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -u bdd -R spec --recursive test",
"check-style": "./node_modules/jscs/bin/jscs ."
}
}