forked from aij/scroll-behavior
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.86 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
{
"name": "scroll-behavior",
"version": "0.9.2",
"description": "Pluggable browser scroll management",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && babel src -d lib",
"lint": "eslint src test *.js",
"prepublish": "npm run build",
"tdd": "cross-env NODE_ENV=test karma start",
"test": "npm run lint && npm run testonly",
"testonly": "npm run tdd -- --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taion/scroll-behavior.git"
},
"keywords": [
"scroll"
],
"author": "Jimmy Jia",
"license": "MIT",
"bugs": {
"url": "https://github.com/taion/scroll-behavior/issues"
},
"homepage": "https://github.com/taion/scroll-behavior#readme",
"dependencies": {
"dom-helpers": "^3.0.0",
"invariant": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-istanbul": "^2.0.3",
"babel-polyfill": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"cross-env": "^3.1.3",
"dirty-chai": "^1.2.2",
"eslint": "^3.9.1",
"eslint-config-4catalyzer": "^0.1.3",
"eslint-plugin-import": "^1.16.0",
"history": "^2.1.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-sinon-chai": "^1.2.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.1.2",
"rimraf": "^2.5.4",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"webpack": "^1.13.3"
}
}