-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 738 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 738 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
34
{
"name": "set-interval",
"version": "2.1.3",
"description": "start and clear interval without setting a variable",
"main": "./src/SetInterval.js",
"directories": {
"src": "src"
},
"repository": {
"type": "git",
"url": "https://github.com/shystruk/SetIntervalJS"
},
"scripts": {
"report-coverage": "cat ./coverage/lcov.info | codecov",
"coverage": "nyc report --reporter=lcov",
"test": "nyc ava && npm run coverage"
},
"keywords": [
"setInterval",
"interval",
"clearInterval"
],
"author": {
"name": "Vasyl Stokolosa",
"email": "v.stokol@gmail.com",
"url": "https://github.com/shystruk"
},
"license": "MIT",
"devDependencies": {
"ava": "^0.24.0",
"codecov.io": "^0.1.6",
"nyc": "^11.3.0"
}
}