generated from siyul-park/node-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.54 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": "k6-stat",
"version": "1.0.6",
"description": "Compare k6 summary results and get stat.",
"homepage": "https://github.com/siyual-park/k6-stat",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"k6-stat": "./bin/k6-stat.js"
},
"scripts": {
"build": "gulp",
"build:watch": "gulp watch",
"clean": "rm -rf ./dist",
"compile": "tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"package:sort": "sort-package-json \"**/package.json\"",
"prepublishOnly": "cross-env NODE_ENV=production npm run build",
"test": "jest"
},
"dependencies": {
"arg": "^5.0.2",
"jsonfile": "^6.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/jsonfile": "^6.1.4",
"@types/k6": "^0.42.0",
"@types/node": "^18.19.61",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cross-env": "^7.0.3",
"deepmerge": "^4.3.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-monorepo": "^0.3.2",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^8.1.0",
"gulp": "^4.0.2",
"gulp-changed": "^4.0.3",
"gulp-if": "^3.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"pinst": "^3.0.0",
"prettier": "^2.8.8",
"sort-package-json": "^2.10.1",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5"
}
}