-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.02 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.02 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
{
"name": "makefont_njs",
"version": "1.0.8",
"description": "Programa de consola para crear fuentes para node-fpdf",
"main": "index.js",
"bin": "dist/index.js",
"scripts": {
"build": "tsc && npm run movefiles",
"start": "node dist/index.js",
"test": "npm run build && node dist/test/test.js",
"test_cli": "npm run build && node dist/index.js /home/gamaliel/DJBMonogram.ttf",
"test_cli_v": "npm run build && node dist/index.js /home/gamaliel/CevicheOne-Regular.ttf",
"movefiles": "copyfiles -u 1 ./src/*.map ./dist",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gamalielmendez/makefont.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gamalielmendez/makefont/issues"
},
"homepage": "https://github.com/gamalielmendez/makefont#readme",
"devDependencies": {
"@types/node": "^17.0.23",
"copyfiles": "^2.4.1",
"typescript": "^4.6.2"
},
"dependencies": {
"n-readlines": "^1.0.1"
}
}