-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.63 KB
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
{
"name": "spin-delay",
"version": "2.0.1",
"description": "Smart spinner helper for React, to manage the duration of loading states.",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "types/index.d.ts",
"license": "MIT",
"author": "Stephan Meijer <stephan@meijer.ws>",
"repository": {
"type": "git",
"url": "git+https://github.com/smeijer/spin-delay.git"
},
"scripts": {
"test": "jest",
"build": "rimraf ./dist && microbundle -i src/index.ts -o dist/index.js --no-pkg-main -f umd --target node",
"watch": "rimraf ./dist && microbundle -i src/index.ts -o dist/index.js --no-pkg-main -f umd --sourcemap true --compress false --target node --watch --raw",
"prettier": "prettier . --write",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:release": "npm run build && prettier --write 'CHANGELOG.md' '.changeset/*.json' && changeset publish"
},
"files": [
"docs",
"dist",
"types"
],
"keywords": [
"react",
"loader",
"suspense",
"delay"
],
"devDependencies": {
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@testing-library/react": "^11.2.2",
"@types/react": "^17.0.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"microbundle": "^0.12.4",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"react": ">=17.0.1"
}
}