-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"name": "@bsnext/mysql-minifier",
"version": "1.1.0",
"description": "MySQL/SQL Queries minifier.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"example": "npm run build && node dist/example/index.js",
"start": "npm run build && node dist/index.js",
"bench": "npm run build && node dist/benchmark/no-cache-expensive.js && node dist/benchmark/no-cache-medium.js && node dist/benchmark/no-cache-cheap.js && node dist/benchmark/cache-expensive.js && node dist/benchmark/cache-medium.js && node dist/benchmark/cache-cheap.js",
"build": "tsc --project tsconfig.json",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bsnext/MySQL-Minifier.git"
},
"keywords": [
"mysql",
"sql",
"sqlite",
"optimizer",
"compress",
"minifier"
],
"bugs": {
"url": "https://github.com/bsnext/MySQL-Minifier/issues"
},
"homepage": "https://github.com/bsnext/MySQL-Minifier#readme",
"author": "SalwadoR",
"type": "commonjs",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.7",
"benchmark": "^2.1.4",
"typescript": "^4.9.3"
}
}