forked from joelmukuthu/animated-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "animated-scroll",
"version": "0.0.1",
"description": "Animate scrollTop and scrollLeft",
"main": "dist/AnimatedScroll.js",
"scripts": {
"lint": "eslint .",
"test": "cross-env NODE_ENV=test nyc mocha -r jsdom-global/register",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "npm run lint && npm test && grunt build"
},
"keywords": [
"animate",
"scrollTop",
"scrollLeft",
"scroll-top",
"scroll-left"
],
"author": "Joel Mukuthu <joelmukuthu@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"coveralls": "^2.11.15",
"cross-env": "^3.1.3",
"eslint": "^3.10.2",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-banner": "^0.6.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-uglify": "^1.0.2",
"grunt-release-it": "^1.0.1",
"jsdom": "^9.8.3",
"jsdom-global": "^2.1.0",
"load-grunt-tasks": "^3.5.0",
"mocha": "^3.1.2",
"nyc": "^9.0.1",
"unexpected": "^10.13.3"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports",
"transform-es2015-modules-umd"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"include": [
"src/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joelmukuthu/animated-scroll.git"
},
"bugs": {
"url": "https://github.com/joelmukuthu/animated-scroll/issues"
},
"homepage": "https://github.com/joelmukuthu/animated-scroll#readme"
}