-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.24 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
{
"name": "@devjacob/smush",
"version": "1.0.6",
"description": "A simple function to make merging objects together a bit easier, because why not!",
"author": "Jacob Paulin",
"license": "MPL-2.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/JayPaulinCodes/smush.git"
},
"scripts": {
"build": "tsc -b",
"prebenchmark": "npm run build",
"benchmark": "node benchmark/benchmark-1.js > benchmark/benchmark-1.txt && node benchmark/benchmark-2.js > benchmark/benchmark-2.txt && node benchmark/benchmark-3.js > benchmark/benchmark-3.txt",
"pretest": "npm run build",
"test": "mocha --parallel --full-trace --recursive",
"pretest:list": "npm run build",
"test:list": "mocha --parallel --full-trace --recursive --reporter list",
"pretest:progress": "npm run build",
"test:progress": "mocha --recursive --reporter progress",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access=public"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/node": "^20.11.20",
"mocha": "^10.3.0",
"systeminformation": "^5.22.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=14.17"
}
}