-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.54 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
{
"name": "sfnt2woff-zopfli",
"version": "0.1.0",
"description": "Node wrapper for bramstein's sfnt2woff-zopfli utility.",
"main": "./src/woff.js",
"scripts": {
"build": "node-gyp rebuild",
"lint": "npm run run-prettier && npm run run-eslint",
"run-eslint": "./scripts/run-eslint.sh",
"run-prettier": "./scripts/run-prettier.sh",
"test": "npm run lint && tap test/*.js"
},
"author": "Ruben Maher <ruben@maher.fyi>",
"bugs": {
"url": "https://github.com/eqyiel/node-sfnt2woff-zopfli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eqyiel/node-sfnt2woff-zopfli.git"
},
"license": "MPL-1.1 AND GPL-2.0 AND LGPL-2.1",
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.2.1"
},
"files": [
"LICENSE",
"README.md",
"binding.gyp",
"src/",
"test/",
"sfnt2woff-zopfli/"
],
"devDependencies": {
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "3.0.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.0",
"font-awesome": "4.7.0",
"mmmagic": "0.5.0",
"prettier": "1.14.2",
"tap": "12.0.1",
"temp": "0.8.3"
},
"prettier": {
"proseWrap": "always",
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"overrides": [
{
"files": "binding.gyp",
"options": {
"parser": "json"
}
}
]
},
"renovate": {
"extends": [
":pinOnlyDevDependencies"
]
}
}