-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.18 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
{
"name": "woff2otf",
"version": "1.0.0",
"description": "Convert WOFF font files to OTF",
"keywords": [
"font",
"fonts",
"woff",
"otf",
"opentype",
"graphics"
],
"main": "src/woff2otf.js",
"browser": "src/woff2otf.js",
"bin": {
"woff2otf": "src/cli.js"
},
"author": {
"name": "Álvaro Mondéjar Rubio",
"email": "mondejar1994@gmail.com"
},
"license": "BSD-3-Clause",
"dependencies": {
"python-struct": "^1.1.3"
},
"scripts": {
"lint": "node_modules/.bin/eslint src",
"lintfix": "npm run lint -- --fix"
},
"devDependencies": {
"eslint": "7.24.0",
"eslint-config-mourner": "3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mondeja/woff2otf.git"
},
"bugs": {
"url": "https://github.com/mondeja/woff2otf/issues",
"email": "mondejar1994@gmail.com"
},
"files": "src",
"eslintConfig": {
"env": {
"node": true
},
"extends": "mourner",
"rules": {
"linebreak-style": [
2,
"unix"
],
"no-mixed-spaces-and-tabs": 2,
"indent": [
"error",
2
],
"curly": 2,
"spaced-comment": 2
}
}
}