-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.57 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
{
"name": "woff2",
"version": "0.0.0-semantic-release",
"description": "Node wrapper around Google's woff2 utility.",
"main": "./src/woff2.js",
"scripts": {
"lint": "npm run run-eslint && npm run run-prettier",
"run-eslint": "eslint **/*.js",
"run-prettier": "prettier --write **/*.{js,json,md,gyp,yml}",
"test": "npm run lint && tap --no-check-coverage test/*.js"
},
"author": {
"name": "Ruben Maher",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/eqyiel/node-woff2/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eqyiel/node-woff2.git"
},
"license": "MIT",
"files": [
"README.md",
"binding.gyp",
"src/",
"test/",
"woff2/"
],
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.15.0"
},
"devDependencies": {
"eslint": "8.13.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.4",
"font-awesome": "4.7.0",
"mmmagic": "0.5.3",
"node-gyp": "^9.0.0",
"prettier": "2.6.2",
"tap": "16.0.1",
"temp": "0.9.4"
},
"prettier": {
"proseWrap": "always",
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"overrides": [
{
"files": "binding.gyp",
"options": {
"parser": "json"
}
}
]
},
"engines": {
"node": ">=12"
},
"release": {
"branches": [
"master"
]
}
}