-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 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
43
{
"name": "formatmicro",
"version": "1.0.7",
"description": "Formats microseconds into a human consumable form.",
"license": "MIT",
"repository": "cullylarson/formatmicro",
"author": {
"name": "Cully Larson",
"email": "cully.larson@gmail.com"
},
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"compile": "babel -d dist/ src/",
"prepublish": "npm run compile",
"docs": "esdoc -c esdoc.json",
"test": "npm run compile && mocha dist/test.js",
"coverage": "nyc npm test && nyc report --reporter=html",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"main": "dist/index.js",
"files": [
"dist/index.js"
],
"keywords": [
"date",
"time",
"format",
"microsecond",
"millisecond"
],
"devDependencies": {
"assert": "^1.3.0",
"babel-cli": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"coveralls": "^2.11.4",
"esdoc-es7-plugin": "0.0.3",
"mocha": "^2.3.4",
"nyc": "^3.2.2"
}
}