-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.33 KB
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
{
"name": "bmbench",
"version": "0.8.15",
"description": "BM Benchmarks",
"main": "bmbench.ts",
"directories": {
"test": "test"
},
"dependencies": {
"benchmark": "^2.1.4"
},
"devDependencies": {
"gh-pages": "^3.2.3",
"qunit": "^2.19.1",
"typescript": "^4.8.2"
},
"scripts": {
"clean": "rm -rf dist/*",
"cleancache": "rm -rf node_modules/.cache/gh-pages/",
"copy": "cp *.js *.ts *.html LICENSE favicon.ico dist/",
"copyx0": "cp *.js *.ts *.html LICENSE favicon.ico dist/ && mkdir dist/test && cp test/*.js test/*.html dist/test/",
"copyxx": "cp *.js *.ts *.html LICENSE favicon.ico dist/ && mkdirp -p dist/src/test && cp -r test/*.ts dist/src/test && cp src/test/*.html dist/test/",
"build:one": "tsc --build",
"build": "npm run build:one && npm run copy",
"test": "qunit test/*.qunit.js",
"testxx": "qunit dist/test/*.qunit.js",
"deploy": "gh-pages -d dist",
"lint": "eslint src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benchmarko/BMbench.git"
},
"keywords": [
"Benchmarks, CPU benchmarks, Performance, programming languages"
],
"author": "Marco Vieth",
"license": "MIT",
"bugs": {
"url": "https://github.com/benchmarko/BMbench/issues"
},
"homepage": "https://github.com/benchmarko/BMbench#readme"
}