-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 902 Bytes
/
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
{
"name": "@lotuz/jsminify",
"version": "0.0.20",
"description": "A javascript minifier written in C, using tree-sitter-javascript parser",
"keywords": [
"javascript",
"minifier",
"c",
"node-addon",
"tree-sitter"
],
"license": "MIT",
"main": "index.js",
"dependencies": {
"node-addon-api": "^3.1.0",
"node-gyp-build": "^4.2.3"
},
"devDependencies": {
"node-gyp": "^7.1.2",
"prebuildify": "^4.1.1"
},
"scripts": {
"install": "node-gyp-build",
"prebuild": "prebuildify --napi --quiet",
"test": "echo 'tested'"
},
"repository": {
"type": "git",
"url": "https://github.com/marcel0ll/jsminify.git"
},
"author": "Marcelo L. Lotufo (@marcel0ll)",
"bugs": {
"url": "https://github.com/marcel0ll/jsminify/issues"
},
"homepage": "https://github.com/marcel0ll/jsminify",
"bin": {
"jsminify": "index.js"
}
}