-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
37 lines (37 loc) · 922 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
{
"dependencies": {
"async-listener": "0.4.5"
},
"description": "Node.js async CPU profiler",
"devDependencies": {
"coffee-script": "latest",
"mocha": "latest"
},
"engines": {
"node": ">=0.8.0"
},
"homepage": "https://github.com/ConradIrwin/async-profile",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ConradIrwin/async-profile"
}
],
"main": "lib/index.js",
"maintainers": [
{
"email": "[email protected]",
"name": "Conrad Irwin"
}
],
"name": "async-profile",
"repository": {
"type": "git",
"url": "https://github.com/ConradIrwin/async-profile"
},
"scripts": {
"prepublish": "coffee -c -o lib src/*",
"test": "mocha --compilers coffee:coffee-script/register test"
},
"version": "0.4.0"
}