-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.67 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
73
{
"name": "smoothr",
"version": "0.5.4",
"description": "Smoothr: Smooth Router - A custom React router that leverages the Web Animations API and CSS animations.",
"keywords": [
"react",
"preact",
"router",
"route",
"routing",
"animate",
"animation",
"animating",
"transition",
"web animations api",
"spa",
"single page app",
"single page apps",
"single page application",
"single page applications"
],
"main": "dist/smoothr.cjs.js",
"jsnext:main": "dist/smoothr.esm.js",
"module": "dist/smoothr.esm.js",
"author": "Nate Adams",
"license": "MIT",
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"build": "yarn install; kcd-scripts build --bundle --p-react"
},
"files": [
"dist",
"preact"
],
"peerDependencies": {
"path-to-regexp": "^3.0.0",
"prop-types": ">=15",
"react": ">=16.3.0"
},
"devDependencies": {
"all-contributors-cli": "^4.11.1",
"kcd-scripts": "^0.37.0",
"npm-run-all": "^4.1.2",
"preact": "^8.2.5",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"serve": "^10.0.2"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js"
},
"eslintIgnore": [
"node_modules",
"cypress",
"stories",
"storybook-static",
"dist",
"preact"
],
"repository": {
"type": "git",
"url": "https://github.com/n8jadams/smoothr.git"
},
"bugs": {
"url": "https://github.com/n8jadams/smoothr/issues"
},
"homepage": "https://github.com/n8jadams/smoothr#readme",
"dependencies": {
"path-to-regexp": "^3.0.0"
}
}