-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.34 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "normat",
"version": "1.2.3",
"description": "generic javascript number/string formatting (bytes, milliseconds, ...)",
"author": {
"name": "Ricardo Ferro",
"email": "ricardo.ferro@gmail.com"
},
"homepage": "https://github.com/rferro/normat",
"bugs": "https://github.com/rferro/normat/issues",
"repository": {
"type": "git",
"url": "https://github.com/rferro/normat"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "grunt test"
},
"keywords": [
"string",
"parser",
"format",
"number",
"serialize",
"bytes",
"milliseconds",
"seconds",
"minutes",
"kb",
"ms"
],
"main": "lib/index.js",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"coffee-script": "^1.9.3",
"del": "^1.2.0",
"gulp": "^3.9.0",
"gulp-bump": "^0.3.1",
"gulp-coffee": "^2.3.1",
"gulp-coffeelint": "^0.5.0",
"gulp-concat": "^2.5.2",
"gulp-header": "^1.2.2",
"gulp-mocha": "^2.1.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.5",
"gulp-watch": "^4.2.4",
"mocha": "^2.2.5",
"run-sequence": "^1.1.0"
},
"coffeelintConfig": {
"max_line_length": {
"level": "ignore"
},
"no_unnecessary_fat_arrows": {
"level": "ignore"
}
}
}