-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 KB
/
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
45
46
47
48
49
50
51
52
53
54
{
"name": "stopwatch-emitter",
"description": "Just a stopwatch-like timer class",
"version": "0.0.4",
"private": false,
"author": "Brian Frichette",
"homepage": "https://github.com/brian-frichette/Stopwatch",
"contributors": [
"Brian Frichette <[email protected]> (https://github.com/brian-frichette)"
],
"bugs": {
"url": "https://github.com/brian-frichette/Stopwatch/issues"
},
"dependencies": {
"traceur": "0.0.72"
},
"devDependencies": {
"async": "0.1.x",
"chai": "^1.9.2",
"grunt": "0.4.x",
"grunt-contrib-concat": ">=0.1.3",
"grunt-contrib-jshint": ">=0.3",
"grunt-contrib-uglify": ">=0.2",
"grunt-contrib-watch": ">=0.3",
"grunt-karma": ">=0.4",
"grunt-traceur": "^0.2.9",
"karma-coverage": "^0.2.6",
"karma-notify-reporter": "^0.1.1",
"mocha": "^1.21.5",
"nodemon": "*",
"sinon": "^1.10.3",
"sinon-chai": "^2.6.0"
},
"keywords": [
"timer",
"stopwatch",
"util",
"time",
"duration",
"counter",
"countdown"
],
"main": "./dist/node/Stopwatch",
"repository": {
"type": "git",
"url": "git://github.com/brian-frichette/Stopwatch.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
]
}