-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 953 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
40
41
42
43
44
{
"name": "module-timing",
"version": "1.0.1",
"description": "Measure module loading and output a breakdown tree allowing you to spot your slowest modules/files",
"main": "index.js",
"files": [
"lib"
],
"scripts": {
"prepublishOnly": "npm run test",
"postpublish": "git push",
"test": "ava -s --verbose"
},
"ava": {
"files": [
"test/test.coffee"
],
"babel": false,
"compileEnhancements": false,
"extensions": [
"coffee"
],
"require": [
"coffee-register"
]
},
"author": "danielkalen",
"repository": {
"type": "git",
"url": "/~https://github.com/danielkalen/module-timing"
},
"license": "MIT",
"devDependencies": {
"ava": "^1.0.0-beta.5"
},
"dependencies": {
"chalk": "^2.1.0",
"coffee-register": "^2.0.0",
"mem": "^3.0.1",
"print-tree": "github:danielkalen/print-tree",
"resolve": "^1.8.1",
"time-span": "^2.0.0"
}
}