forked from tancredi/fantasticon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.96 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "fantasticon",
"version": "0.0.0",
"description": "Icon font generation tool",
"repository": {
"type": "git",
"url": "git+https://github.com/tancredi/fantasticon.git"
},
"keywords": [
"icons",
"fonts",
"iconfonts",
"svg",
"vector"
],
"author": "Tancredi Trugenberger",
"bugs": {
"url": "https://github.com/tancredi/fantasticon/issues"
},
"homepage": "https://github.com/tancredi/fantasticon#readme",
"main": "lib/index.js",
"bin": {
"fantasticon": "bin/fantasticon"
},
"license": "MIT",
"scripts": {
"test": "jest",
"build": "rimraf lib && tsc --project ./tsconfig.json",
"watch": "npm run build -- --watch",
"typecheck": "tsc --noEmit --project tsconfig.test.json --noEmit",
"lint": "prettier --check ."
},
"files": [
"bin/fantasticon",
"lib/**/*.{js,ts,map}",
"!lib/**/{__mocks__,__tests__}/",
"templates/*.hbs"
],
"prepublish": "build",
"dependencies": {
"change-case": "^4.1.2",
"cli-color": "^2.0.0",
"commander": "^7.2.0",
"glob": "^7.2.0",
"handlebars": "^4.7.7",
"slugify": "^1.6.0",
"svg2ttf": "^6.0.3",
"svgicons2svgfont": "^10.0.3",
"ttf2eot": "^2.0.0",
"ttf2woff": "^3.0.0",
"ttf2woff2": "^4.0.4"
},
"devDependencies": {
"@types/cli-color": "^2.0.0",
"@types/glob": "^7.1.3",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@types/svg2ttf": "^5.0.1",
"@types/svgicons2svgfont": "^10.0.1",
"@types/ttf2eot": "^2.0.0",
"@types/ttf2woff": "^2.0.2",
"@types/ttf2woff2": "^2.0.0",
"jest": "^26.6.3",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"ts-jest": "^26.5.6",
"typescript": "^4.4.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"rootDir": "./src",
"globals": {
"ts-jest": {
"tsconfig": "./tsconfig.test.json"
}
}
},
"engines": {
"node": ">= 10.0.0"
}
}