This repository has been archived by the owner on Mar 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.81 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
{
"dependencies": {
"nosleep.js": "https://github.com/ViRPo/NoSleep.js#f7a6122f5d6700f18a68bff2c4114b81fdf6fa55"
},
"description": "NoSleep.js, in React Hooks form.",
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/preset-env": "7.12.7",
"@babel/preset-typescript": "7.12.7",
"@testing-library/react": "11.2.2",
"@testing-library/react-hooks": "3.4.2",
"@testing-library/user-event": "12.2.2",
"@types/jest": "26.0.15",
"@types/react": "17.0.0",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"eslint": "7.14.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.0",
"jest-cli": "26.6.3",
"lint-staged": "10.5.2",
"prettier": "1.19.1",
"react": "17.0.1",
"react-test-renderer": "17.0.1",
"typescript": "4.1.2"
},
"keywords": [
"hook",
"nosleep.js",
"nosleep",
"react",
"wake lock"
],
"license": "MIT",
"lint-staged": {
"**/*.{js,json,ts,xml,yaml}": [
"prettier --write",
"git add"
]
},
"main": "./lib/index.js",
"name": "use-no-sleep",
"repository": {
"type": "git",
"url": "github:JoshuaKGoldberg/use-no-sleep"
},
"scripts": {
"build": "tsc --noEmit false --outDir lib/",
"format": "prettier ./*.{json,md,yml} ./circleci/* ./src/* --write",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"types": "./lib/index.d.ts",
"version": "0.3.1"
}