-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
35 lines (35 loc) · 925 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": "correcting-interval",
"version": "2.0.0",
"description": "Provides setCorrectingInterval and clearCorrectingInterval as an auto-correcting alternative to setInterval",
"main": "correctingInterval.js",
"repository": {
"type": "git",
"url": "https://github.com/aduth/correctingInterval.git"
},
"keywords": [
"timer",
"interval",
"timing"
],
"scripts": {
"test": "node -e \"require('grunt').tasks('test');\""
},
"author": {
"name": "Andrew Duthie",
"email": "[email protected]",
"url": "http://www.andrewduthie.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aduth/correctingInterval/issues"
},
"devDependencies": {
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-uglify": "~0.2.7",
"grunt": "~0.4.2",
"grunt-mocha": "~0.4.7",
"grunt-contrib-jshint": "~0.7.2",
"grunt-contrib-watch": "~0.5.3"
}
}