-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "@excalibur-enterprise/timeval-js",
"version": "1.0.0",
"description": "Isomorphic timeout / interval wrappers for both Node JS & Browser",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "eslint . --ext .ts",
"lint-fix": "npm run lint -- --fix"
},
"keywords": [
"nodejs",
"typescript",
"browser",
"timeout",
"interval",
"isomorphic"
],
"author": "Excalibur s.r.o.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/excalibur-enterprise/timeval-js.git"
},
"bugs": {
"url": "https://github.com/excalibur-enterprise/timeval-js/issues"
},
"homepage": "https://github.com/excalibur-enterprise/timeval-js.git",
"devDependencies": {
"@types/detect-node": "^2.0.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"typescript": "^4.4.4"
},
"dependencies": {
"detect-node": "^2.1.0"
}
}