-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 1005 Bytes
/
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
{
"name": "reload-js",
"description": "A tool to conditionally reload a static page or single-page app.",
"version": "0.0.1",
"author": "Kevin Hoff",
"keywords": [
"front-end",
"javascript",
"web"
],
"repository": {
"type": "git",
"url": "https://github.com/anjunatl/reload.git"
},
"bugs": {
"url": "https://github.com/anjunatl/reload/issues"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-jshint": "^1.12.0",
"gulp-sequence": "^0.4.1",
"gulp-uglify": "^1.4.0",
"http-server": "^0.8.0",
"jasmine-core": "^2.3.4",
"jshint-stylish": "^2.1.0",
"karma": "^0.13.9",
"karma-coverage": "^0.5.1",
"karma-jasmine": "^0.3.6",
"karma-ng-html2js-preprocessor": "^0.1.2",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sinon": "^1.0.4",
"phantomjs": "^1.9.18",
"sinon": "^1.16.1"
},
"scripts": {
"start": "http-server -a localhost -p 8000 -c-1",
"test": "gulp test"
}
}