forked from taion/scroll-behavior
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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": "scroll-behavior",
"version": "0.3.0",
"description": "Scroll behaviors for use with history",
"files": [
"es6",
"lib"
],
"main": "lib/index.js",
"jsnext:main": "es6/index",
"scripts": {
"build": "npm run build-cjs && npm run build-es6",
"build-cjs": "rimraf lib && babel ./modules -d lib --ignore '__tests__'",
"build-es6": "rimraf es6 && babel ./modules -d es6 --blacklist=es6.modules --ignore '__tests__'",
"lint": "eslint modules *.js",
"prepublish": "npm run test -- --single-run && npm run build",
"test": "npm run lint && karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rackt/scroll-behavior.git"
},
"keywords": [
"history",
"location",
"scroll"
],
"author": "Jimmy Jia",
"license": "MIT",
"bugs": {
"url": "https://github.com/rackt/scroll-behavior/issues"
},
"homepage": "https://github.com/rackt/scroll-behavior#readme",
"devDependencies": {
"babel": "^5.8.29",
"babel-core": "^5.8.33",
"babel-eslint": "^4.1.4",
"babel-loader": "^5.3.3",
"chai": "^3.4.0",
"eslint": "^1.8.0",
"eslint-config-rackt": "^1.1.1",
"expect": "^1.12.2",
"history": "^1.13.0",
"isparta-loader": "^1.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.3"
},
"peerDependencies": {
"history": "^1.12.1"
},
"dependencies": {
"dom-helpers": "^2.4.0"
}
}