-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (41 loc) · 1.12 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
{
"name": "datef",
"version": "3.0.1",
"description": "Simple date formatting library with i10n, both for browser and node.js",
"author": "Konstantin Kitmanov <[email protected]>",
"contributors": [
{
"name": "Maxim Ponomarev",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/maxvipon/datef.git"
},
"bugs": {
"url": "https://github.com/maxvipon/datef/issues"
},
"keywords": [
"moment",
"date",
"time",
"format",
"l10n"
],
"typings": "./datef.d.ts",
"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 ."
}
}