forked from janodvarko/harviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 1.01 KB
/
package.json
File metadata and controls
22 lines (22 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "harviewer",
"version": "1.0.0",
"description": "The purpose of this online tool is to visualize HTTP Archive (HAR) log files created by HTTP tracking tools. These files contain log of HTTP client/server conversation and can be used for an additional analysis of e.g. page load performance.",
"devDependencies": {
"eslint": "^3.14.1",
"eslint-config-google": "^0.7.1",
"intern": "^3.4.2",
"jsdoc": "~3.4.3",
"preprocess": "^3.1.0",
"requirejs": "^2.3.2"
},
"scripts": {
"eslint": "eslint --quiet webapp",
"eslint-full": "eslint webapp",
"jsdoc": "jsdoc webapp/scripts --recurse --configure jsdoc.conf.json --destination webapp-jsdoc --package package.json --readme README.md --verbose --access all --private",
"test": "intern-client config=tests/intern",
"test-standalone": "intern-runner config=tests/intern-selenium-standalone",
"test-grid": "intern-runner config=tests/intern-selenium-grid",
"my-grid": "intern-runner config=tests/my-intern-selenium-grid"
}
}