This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.52 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
61
62
63
64
65
66
67
68
69
70
{
"name": "@tbhaxor/node-sleep",
"version": "0.1.1",
"description": "Synchronous sleep for your javascript project",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prepublish": "npm run build",
"format": "prettier -w lib",
"lint": "eslint lib --fix",
"test": "jest"
},
"keywords": [
"nodejs",
"sleep",
"libc",
"usleep",
"sync sleep",
"synchronous",
"time"
],
"author": {
"email": "tbhaxor@gmail.com",
"name": "Gurkirat Singh",
"url": "https://tbhaxor.com"
},
"license": "MIT",
"dependencies": {
"ffi-napi": "^4.0.3"
},
"devDependencies": {
"@faker-js/faker": "^6.0.0",
"@types/ffi-napi": "^4.0.5",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"testEnvironment": "node"
},
"homepage": "https://github.com/tbhaxor/node-sleep#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tbhaxor/node-sleep.git"
},
"bugs": {
"url": "https://github.com/tbhaxo/node-sleep/issues"
},
"os": [
"!win32"
]
}