-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "@momentum-ui/webfonts-generator",
"version": "2.3.2",
"description": "Modern webfonts generator from SVG icons",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "[email protected]:momentum-design/webfonts-generator.git"
},
"bugs": {
"url": "https://github.com/momentum-design/webfonts-generator/issues"
},
"author": "Cisco Systems, Inc.",
"contributors": [
"Thomas Bassetto <[email protected]>",
"Paul Witty <[email protected]>"
],
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"glob": "^7.1.3",
"prettier": "^1.16.4",
"svg2ttf": "^4.2.0",
"svgicons2svgfont": "^9.0.4",
"ttf2woff": "^2.0.1",
"wawoff2": "^1.0.2"
},
"devDependencies": {
"eslint": "^5.15.2",
"eslint-config-prettier": "^4.1.0",
"eslint-config-recommended": "^4.0.0",
"eslint-plugin-node": "^9.0.1",
"jest": "^24.5.0"
},
"scripts": {
"lint": "eslint '**/*.js'",
"prettify": "prettier --write '**/*.{js,json,md}'",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"jest": {
"testEnvironment": "node"
}
}