-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"title": "scrollProgress",
"name": "scrollprogress",
"description": "Light weight library to observe the viewport scroll position",
"url": "https://github.com/jeremenichelli/scrollProgress",
"author": "Jeremias Menichelli",
"copyright": "2014",
"version": "3.0.2",
"license": "MIT",
"main": "./dist/scrollProgress.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jeremenichelli/scrollProgress.git"
},
"scripts": {
"lint": "eslint src/**/*.js test/**/*.js",
"pretest": "npm run lint",
"test": "ava ./test/scrollProgress.spec.js --verbose",
"prebuild": "npm test",
"build": "rollup -c rollup.config.js"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-core": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.14.0",
"eslint": "^4.4.1",
"lodash.clone": "^4.5.0",
"rollup": "^0.45.2",
"sinon": "^3.2.0"
},
"ava": {
"require": [
"babel-register"
]
},
"bugs": {
"url": "https://github.com/jeremenichelli/scrollProgress/issues"
},
"homepage": "https://github.com/jeremenichelli/scrollProgress#readme",
"keywords": [
"scroll",
"progress",
"viewport",
"observer",
"ui"
]
}