forked from davesnx/scrollto-with-animation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (75 loc) · 2.12 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
75
76
77
78
79
{
"name": "scrollto-with-animation",
"version": "3.0.1",
"author": "David Sancho <[email protected]> (https://github.com/davesnx)",
"description": "Animated Scroll with requestAnimationFrame. For smoothly animating scroll defining the easing, running at 60FPS and cross-browser",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/davesnx/scrollto-with-animation"
},
"keywords": [
"animation",
"scrollTo",
"60fps",
"cross-browser",
"requestAnimationFrame",
"easeInQuad",
"browserify"
],
"scripts": {
"clean": "rm -rf dist/*; rm -rf lib/",
"minify:dev": "webpack --config cfg/webpack.config.js --watch",
"minify:prod": "webpack -p --config cfg/webpack.config.js",
"compile:dev": "babel ./src --watch --out-dir ./dist",
"compile:prod": "npm run clean; babel ./src --out-dir ./dist",
"test:dev": "karma start cfg/karma.config.js --auto-watch",
"test": "karma start cfg/karma.config.js --single-run",
"prepublish": "npm run compile:prod"
},
"pre-push": [
"minify:prod"
],
"bugs": {
"url": "https://github.com/davesnx/scrollto-with-animation/issues"
},
"dependencies": {
"animation-frame": "^0.2.5"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-tape-runner": "^2.0.0",
"jasmine-core": "^2.3.4",
"babelify": "^7.2.0",
"karma": "^0.13.9",
"karma-chrome-launcher": "^0.2.1",
"karma-cli": "0.1.0",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^0.3.6",
"karma-junit-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "^0.3.6",
"karma-spec-reporter": "0.0.22",
"karma-story-reporter": "^0.3.1",
"karma-webpack": "^1.7.0",
"phantomjs": "^1.9.18",
"pre-push": "^0.1.1",
"webpack": "^1.12.13"
},
"standard": {
"parser": "babel-eslint",
"global": [
"jasmine",
"it",
"describe",
"beforeEach",
"afterEach",
"expect",
"spyOn"
]
}
}