-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.65 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
{
"name": "use-scroll-behavior",
"version": "0.1.5",
"description": "Scroll behaviors for use with history, inspired by scroll-behavior",
"main": "lib/index.js",
"files": [
"lib"
],
"keywords": [
"history",
"location",
"scroll"
],
"scripts": {
"build": "npm run build-cjs",
"build-cjs": "rimraf lib && babel ./src -d lib --ignore '__tests__'",
"lint": "eslint src *.js",
"prepublish": "npm run build",
"test": "npm run lint && karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blackbing/use-scroll-behavior.git"
},
"bugs": {
"url": "https://github.com/blackbing/use-scroll-behavior/issues"
},
"author": "blackbing",
"homepage": "https://github.com/blackbing/use-scroll-behavior#readme",
"license": "MIT",
"devDependencies": {
"babel": "5.x",
"babel-core": "5.x",
"babel-eslint": "4.x",
"babel-loader": "5.x",
"chai": "^3.4.0",
"expect": "^1.12.2",
"isparta-loader": "1.x",
"eslint": "^1.8.0",
"eslint-config-rackt": "^1.1.1",
"history": "^2.0.0",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.2.1",
"karma-coverage": "^0.5.3",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.3",
"rimraf": "^2.4.3",
"webpack": "^1.12.13"
},
"peerDependencies": {
"history": "^1.12.1 || ^2.0.0"
},
"dependencies": {
"dom-helpers": "^2.4.0",
"exenv": "^1.2.0",
"lodash.debounce": "^4.0.8",
"lodash.isarray": "^4.0.0"
}
}