-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 939 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
36
37
38
{
"name": "interval-timer",
"version": "1.1.2",
"description": "A time accurate count up/down timer",
"browser": "dist/interval-timer.umd.js",
"main": "./src/index.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "https://github.com/JonFranklin301/interval-timer.git"
},
"keywords": [
"timer",
"countdown",
"stopwatch",
"setInterval",
"setTimeout",
"time",
"clock"
],
"author": "Jon Franklin",
"license": "MIT",
"bugs": {
"url": "https://github.com/JonFranklin301/interval-timer/issues"
},
"homepage": "https://github.com/JonFranklin301/interval-timer#README",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"rollup": "^2.29.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}