-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.94 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
74
{
"name": "react-prefetcher",
"version": "1.1.2",
"description": "A react library providing components that help with interaction-based asset pre-fetching.",
"main": "dist/index.js",
"scripts": {
"test": "nyc mocha --require @babel/register --require jsdom-global/register",
"test-dev": "mocha --require @babel/register --require @babel/polyfill --require jsdom-global/register --watch",
"build": "babel src --out-dir dist",
"dev": "babel src --out-dir dist --watch",
"prebuild": "rm -rf dist/*",
"prepublish": "npm run build",
"release": "np"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/manojVivek/react-prefetcher.git"
},
"keywords": [
"prefetch",
"performance",
"preload",
"resource",
"hint",
"web",
"performance",
"speed",
"link",
"cache",
"react"
],
"author": "Manoj Vivek (https://github.com/manojVivek)",
"license": "MIT",
"bugs": {
"url": "https://github.com/manojVivek/react-prefetcher/issues"
},
"homepage": "https://github.com/manojVivek/react-prefetcher#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"chai-spies": "^1.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"husky": "^2.4.0",
"jsdom": "15.1.1",
"jsdom-global": "3.0.2",
"mocha": "^6.1.4",
"np": "^5.0.3",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}