-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.37 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
{
"name": "next-page-loading-bar",
"version": "1.0.0",
"description":
"A loading bar with a react higher-order component that adds a loading bar during the next router page transitions",
"main": "build/index.js",
"scripts": {
"test": "jest",
"build": "webpack --optimize-minimize"
},
"repository": {
"type": "git",
"url": "git@github.com:dreidev/next-page-loading-bar.git"
},
"keywords": ["react", "loading", "bar", "nextjs", "page"],
"author": "Amr Draz <amr.m.draz@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dreidev/next-page-loading-bar/issues"
},
"homepage": "https://github.com/dreidev/next-page-loading-bar#readme",
"peerDependencies": {
"react": "*",
"next": "*"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"jest": "^21.2.1",
"next": "^4.1.3",
"next-router-events": "^1.0.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"webpack": "^3.8.1",
"webpack-node-externals": "^1.6.0"
},
"prettier": {
"trailingComma": "es5",
"semi": false
},
"jest": {
"testRegex": "(/src/.*\\.test.js)$",
"collectCoverage": true,
"testEnvironment": "jsdom"
},
"babel": {
"presets": ["next/babel"]
}
}