-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "parallaxer",
"version": "1.0.0",
"description": "A library to add a parallax effect when scrolling",
"main": "index.js",
"scripts": {
"test": "karma start --single-run --browsers Firefox",
"testAll": "karma start --single-run",
"start": "browser-sync start --server --files index.html index.js demoAssets/* --online",
"lint": "eslint index.js testing/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bonanastasia/parallaxer.git"
},
"keywords": [
"parallax",
"scroll"
],
"author": "Anastasia Goodwin and Jesse Jorgenson",
"license": "MIT",
"bugs": {
"url": "https://github.com/bonanastasia/parallaxer/issues"
},
"homepage": "https://github.com/bonanastasia/parallaxer#readme",
"devDependencies": {
"browser-sync": "^2.18.12",
"chai": "^4.0.2",
"eslint": "^4.1.1",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"mocha": "^3.4.2"
}
}