-
Notifications
You must be signed in to change notification settings - Fork 184
/
package.json
45 lines (45 loc) · 1.97 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
{
"name": "harviewer",
"version": "3.0.0-alpha.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": {
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"dojo": "^1.14.2",
"ejs": "^2.6.1",
"eslint": "^5.9.0",
"eslint-config-google": "^0.11.0",
"express": "^4.16.4",
"intern": "^4.2.4",
"jsdoc": "^3.5.5",
"jsonfile": "^5.0.0",
"npm-run-all": "^4.1.5",
"preprocess": "^3.1.0",
"replace-in-file": "^3.4.2",
"requirejs": "^2.3.6",
"rimraf": "^2.6.2",
"selenium-standalone": "^6.15.4",
"shelljs": "^0.8.3",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0"
},
"scripts": {
"build": "run-s build:rjs build:webapp",
"build:webapp": "node build-tools/build.js",
"build:rjs": "r_js -o webapp/scripts/app.build.js",
"clean": "rimraf webapp-build webapp-jsdoc",
"clean-build": "run-s clean build",
"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",
"selenium:install": "selenium-standalone install --config=selenium-standalone-config.js",
"selenium:start": "selenium-standalone start --config=selenium-standalone-config.js",
"selenium:start:debug": "cross-env DEBUG=selenium-standalone:* selenium-standalone start --config=selenium-standalone-config.js",
"start": "node server/",
"stylelint": "stylelint --config .stylelint.json webapp/css/*.css",
"stylelint:build": "stylelint --config .stylelint.json webapp-build/css/harPreview.css webapp-build/css/harViewer.css",
"test": "intern",
"test:unit": "intern",
"test:all": "intern config=@all"
}
}