-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 KB
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
{
"name": "sharp-timer",
"version": "0.2.3",
"author": "afractal",
"description": "Simple timers utility library with api (mostly) inspired by .NET equivalents",
"main": "./dist/src/index.js",
"types": "./dist/src/index",
"license": "MIT",
"homepage": "https://github.com/afractal/SharpTimer#readme",
"bugs": {
"url": "https://github.com/afractal/SharpTimer/issues"
},
"keywords": [
"sharp-timer",
"sharp",
"timer",
"timers"
],
"repository": {
"type": "git",
"url": "git+https://github.com/afractal/SharpTimer.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@afractal"
},
"scripts": {
"start": "tsc -w",
"build": "tsc --build",
"test": "yarn build && jest --config=\"jest.config.js\" --detectOpenHandles --forceExit",
"deploy": "npm publish"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
}
}