-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.4 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
{
"name": "sleepjs",
"version": "4.0.3",
"description": "Asynchronous sleep with better time functions and typescript bindings",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"cover": "jest --coverage",
"test": "rm -rf coverage && npm run lint && jest",
"coveralls": "cat ./coverage/lcov.info | coveralls && cat ./coverage/lcov.info | codeclimate-test-reporter && rm -rf ./coverage"
},
"author": "Simon Siegert",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.20.0",
"jest": "^25.5.4",
"ts-jest": "^25.5.1",
"typescript": "^3.9.7"
},
"files": [
"dist/index.js",
"index.d.ts",
"index.d.ts.map"
],
"dependencies": {},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"directories": {
"test": "test"
},
"keywords": [
"async",
"await",
"break",
"pause",
"promise",
"sleep",
"time",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/simsieg/sleepjs.git"
},
"bugs": {
"url": "https://github.com/simsieg/sleepjs/issues"
},
"homepage": "https://github.com/simsieg/sleepjs#readme"
}