-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 937 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
{
"name": "instrumitter",
"version": "1.1.0",
"description": "Instrument your node.js code and emit data about what's happening",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha --include-all-sources -- --ui bdd --reporter spec ./test",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlrawlings/instrumitter.git"
},
"keywords": [
"instrument",
"emitter"
],
"author": "Michael Rawlings <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mlrawlings/instrumitter/issues"
},
"homepage": "https://github.com/mlrawlings/instrumitter#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.4",
"left-pad": "^1.1.0",
"mocha": "^2.5.3"
},
"dependencies": {
"resolve": "^1.1.7",
"time-ms": "^1.0.0"
}
}