-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (56 loc) · 1.38 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
{
"name": "@jalik/benchmark",
"version": "2.0.3",
"description": "Utilities to benchmark code.",
"license": "MIT",
"keywords": [
"benchmark",
"utils"
],
"author": {
"name": "Karl Stein",
"email": "[email protected]",
"url": "https://github.com/jalik"
},
"repository": {
"type": "git",
"url": "https://github.com/jalik/js-benchmark.git"
},
"bugs": {
"url": "https://github.com/jalik/js-benchmark/issues"
},
"esnext": "./src/index.js",
"main": "./dist/index.js",
"module": "./src/index.js",
"sideEffects": false,
"scripts": {
"build": "babel ./src -d ./dist",
"clean": "rimraf ./dist",
"dev": "babel --watch ./src -d ./dist",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"prepare": "npm run clean && npm run build && npm run lint",
"prepublishOnly": "npm test",
"test": "jest --coverage=true"
},
"files": [
"/dist",
"/src"
],
"dependencies": {
"@babel/runtime": "^7.22.15"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.19",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@jest/globals": "^29.7.0",
"eslint": "^8.49.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.2.1",
"typescript": "^4.9.5"
}
}