summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bower.json7
-rw-r--r--package.json3
-rw-r--r--test/index.html6
3 files changed, 5 insertions, 11 deletions
diff --git a/bower.json b/bower.json
index 0092d29..c846dfe 100644
--- a/bower.json
+++ b/bower.json
@@ -17,12 +17,5 @@
],
"dependencies": {
"jquery": "*"
- },
- "devDependencies": {
- "grunt": "~0.4.5",
- "grunt-contrib-qunit": "~0.5.2",
- "grunt-contrib-uglify": "~0.6.0",
- "grunt-eslint": "~1.1.0",
- "projectz": "~0.3.15"
}
}
diff --git a/package.json b/package.json
index ebadd10..f15dcb4 100644
--- a/package.json
+++ b/package.json
@@ -54,7 +54,8 @@
"grunt": "~0.4.5",
"grunt-contrib-qunit": "~0.5.2",
"projectz": "~0.3.15",
- "uglify-js": "~2.4.15"
+ "uglify-js": "~2.4.15",
+ "qunitjs": "~1.16.0"
},
"scripts": {
"pretest": "./node_modules/.bin/eslint jquery.once.js",
diff --git a/test/index.html b/test/index.html
index 038db22..6a0293f 100644
--- a/test/index.html
+++ b/test/index.html
@@ -2,7 +2,7 @@
<html>
<head>
<title>jQuery Once - Test Suite</title>
- <link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.11.0.css">
+ <link rel="stylesheet" href="../node_modules/qunitjs/qunit/qunit.css">
</head>
<body id="body">
<div id="qunit"></div>
@@ -31,8 +31,8 @@
</div>
- <script src="http://code.jquery.com/jquery-2.1.1.js"></script>
- <script src="http://code.jquery.com/qunit/qunit-1.11.0.js"></script>
+ <script src="../node_modules/jquery/dist/jquery.js"></script>
+ <script src="../node_modules/qunitjs/qunit/qunit.js"></script>
<script src="../jquery.once.js"></script>
<script src="test.js"></script>
</body>