-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.93 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
71
72
{
"name": "use-waiter",
"description": "A react hook to wait for an asynchronous order.",
"version": "2.2.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/skt-t1-byungi/use-waiter",
"homepage": "https://skt-t1-byungi.github.io/use-waiter/",
"author": "skt-t1-byungi <[email protected]>",
"keywords": [
"react",
"hooks",
"wait",
"waiting",
"queue",
"load",
"loadable",
"loading"
],
"license": "MIT",
"scripts": {
"dev": "parcel website/index.html -d public",
"website": "parcel build website/index.html -d public --public-url ./ --no-source-maps",
"deploy": "rm -rf public && npm run website && gh-pages -d public",
"test": "ava",
"build": "rm -rf dist && tsc",
"prepublishOnly": "npm run test && npm run build"
},
"engines": {
"node": ">= 6"
},
"files": [
"dist"
],
"peerDependencies": {
"react": "^16.8.6"
},
"dependencies": {
"rsup-duration": "^1.0.0"
},
"devDependencies": {
"@byungi/p-delay": "^0.1.3",
"@testing-library/react-hooks": "^3.1.1",
"@types/react-dom": "^16.8.5",
"ava": "^2.2.0",
"clsx": "^1.0.4",
"eslint": "^6.6.0",
"eslint-config-byungi": "^0.7.6",
"gh-pages": "2.1.1",
"parcel-bundler": "^1.12.4",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.11.0",
"sass": "^1.22.9",
"thejungle": "^1.0.0",
"ts-node": "^8.4.1",
"typescript": "^3.5.3",
"use-simple-store": "^1.2.8"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"eslintConfig": {
"extends": "byungi/typescriptreact"
}
}