-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 1.7 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
55
56
57
58
59
60
{
"name": "tiny-timer",
"version": "1.6.0",
"description": "Small countdown timer and stopwatch module.",
"source": "src/tiny-timer.ts",
"main": "dist/tiny-timer.js",
"module": "dist/tiny-timer.module.js",
"types": "dist/tiny-timer.d.ts",
"scripts": {
"build": "rimraf dist/* && microbundle --target=node --format=es,cjs",
"test": "npm run lint && tape test.js && npm run test-ts",
"test-ts": "ts-node -O '{\"esModuleInterop\": true, \"module\": \"commonjs\"}' test-ts.ts",
"lint": "tslint --project .",
"pre-tslint": "prettier-tslint fix ./src/tiny-timer.ts",
"update-contributors": "git-authors-cli",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"keywords": [
"countdown",
"stopwatch",
"timer"
],
"author": "Mathias Rasmussen <[email protected]>",
"contributors": [
"Mathias Rasmussen <[email protected]>",
"Jaisa Ram <[email protected]>",
"Marinko Pešo <[email protected]>",
"Michael Ishola <[email protected]>",
"Yrobot <[email protected]>"
],
"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": {
"@types/node": "^14.14.22",
"@types/tape": "^4.13.0",
"git-authors-cli": "^1.0.33",
"microbundle": "^0.13.0",
"prettier": "^2.2.1",
"prettier-tslint": "^0.4.2",
"rimraf": "^3.0.2",
"tape": "^5.1.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"dependencies": {
"mitt": "^2.1.0"
},
"files": [
"dist"
]
}