forked from mathiasvr/tiny-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1016 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
39
40
41
{
"name": "tiny-timer",
"version": "1.3.0",
"description": "Small countdown timer and stopwatch module.",
"main": "dist/tiny-timer.cjs.js",
"module": "dist/tiny-timer.es.js",
"scripts": {
"clean:dist": "del-cli dist/*",
"build": "npm run clean:dist && bili",
"prepublish": "npm run build",
"test": "standard && tape test.js"
},
"keywords": [
"countdown",
"stopwatch",
"timer"
],
"author": "Mathias Rasmussen <[email protected]>",
"contributors": [
"Marinko Peso <[email protected]> (http://github.com/marinko-peso/)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mathiasvr/tiny-timer.git"
},
"bugs": {
"url": "https://github.com/mathiasvr/tiny-timer/issues"
},
"homepage": "https://github.com/mathiasvr/tiny-timer#readme",
"devDependencies": {
"bili": "^3.1.2",
"del-cli": "^1.1.0",
"standard": "*",
"tape": "^4.6.0"
},
"dependencies": {},
"files": [
"dist"
]
}