-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 811 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 811 Bytes
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
{
"name": "contimer",
"version": "1.0.1",
"description": "Routines to measure time in the context of an object.",
"main": "index.js",
"scripts": {
"test": "jshint --config ./.jshintrc ./*.js ./test && jscs ./*.js ./test && mocha -s 1 -R spec ./test"
},
"repository": {
"type": "git",
"url": "git://github.com/nodules/contimer.git"
},
"keywords": [
"timer",
"debug"
],
"author": "Phillip Kovalev <twilightfeel@gmail.com>",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/nodules/contimer/raw/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/nodules/contimer/issues"
},
"homepage": "https://github.com/nodules/contimer",
"devDependencies": {
"jscs": "^1.4.3",
"jshint": "^2.5.0",
"mocha": "^1.18.2"
}
}