forked from krausest/js-framework-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.01 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "js-framework-benchmark",
"version": "1.0.0",
"description": "Simple Benchmark for Javascript client side rendering",
"type": "module",
"scripts": {
"clean": "node cleanup.js",
"build": "node rebuild-all.js --ci",
"build-prod": "node rebuild-all.js --ci",
"compile": "node rebuild-all.js --ci",
"start": "cd server && node index.js",
"bench": "cd webdriver-ts && cross-env LANG=\"en_US.UTF-8\" node dist/benchmarkRunner.js",
"checkCSP": "cd webdriver-ts && cross-env LANG=\"en_US.UTF-8\" node dist/isCSPCompliant.js",
"results": "cd webdriver-ts && npm run results",
"bench-all": "cd webdriver-ts && npm run bench && npm run results",
"compile-webdriver-ts": "cd webdriver-ts && npm run compile",
"postinstall": "cd server && npm install",
"install-webdriver-ts": "cd webdriver-ts && npm ci && npm run compile",
"install-server": "cd server && npm ci",
"install-webdriver-ts-results": "cd webdriver-ts-results && npm ci",
"install-local": "npm run install-webdriver-ts && npm run install-webdriver-ts-results && npm run install-server",
"rebuild": "node rebuild-single.js",
"rebuild-ci": "node rebuild-single.js --ci",
"zip": "node cli.js zip",
"format": "prettier . \"!(broken-frameworks|frameworks)/**/*\" -w",
"lint": "eslint . --ignore-pattern \"/broken-frameworks/\" --ignore-pattern \"/frameworks/\""
},
"keywords": [
"benchmark",
"javascript",
"frontend",
"client",
"react",
"angular",
"mithril"
],
"repository": {
"type": "git",
"url": "https://github.com/krausest/js-framework-benchmark.git"
},
"author": "Stefan Krause",
"license": "ISC",
"homepage": "https://github.com/krausest/js-framework-benchmark",
"dependencies": {
"adm-zip": "^0.5.10",
"commander": "^11.0.0",
"cross-env": "^7.0.3",
"json5": "^2.2.3",
"rimraf": "^5.0.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"eslint": "^8.50.0",
"local-web-server": "^5.3.0",
"prettier": "^3.0.3"
}
}