-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.82 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": "jperf",
"version": "1.5.1",
"description": "Flexible & lightweight JavaScript performance tester utility for web browsers and Node.js",
"keywords": [
"nodejs",
"javascript",
"js",
"test",
"testing",
"performance",
"code",
"runtime"
],
"main": "dist/jperf.min.js",
"scripts": {
"test": "jest -u -c jest.config.ts --verbose --collectCoverage",
"ci-test": "jest -u -c jest.config.ts --collectCoverage",
"serve": "rollup -c rollup.config.js -w --bundleConfigAsCjs --environment MODE:local",
"build:dev": "rollup -c rollup.config.js --bundleConfigAsCjs --environment MODE:development",
"build:production": "rollup -c rollup.config.js --bundleConfigAsCjs --environment MODE:production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mekkanix/jperf.git"
},
"author": "mekkanix <contact@mekkanix.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mekkanix/jperf/issues"
},
"homepage": "https://github.com/mekkanix/jperf#readme",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.3",
"@types/jsdom": "^20.0.1",
"@types/node": "^20.4.8",
"es6-promise": "^4.2.8",
"eslint": "^8.38.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jsdom": "^22.1.0",
"prettier": "^3.0.0",
"prettier-eslint": "^15.0.1",
"rollup": "^3.26.3",
"rollup-plugin-serve": "^2.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}