-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
32 lines (32 loc) · 894 Bytes
/
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
{
"name": "openvg",
"version": "0.5.0",
"author": "Luis Reis <[email protected]> (http://luismreis.com/)",
"description": "OpenVG bindings for node",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/luismreis/node-openvg.git"
},
"keyword": [
"raspberry-pi",
"openvg"
],
"dependencies": {},
"devDependencies": {
"eslint": "^4.1.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-prettier": "^2.1.2",
"husky": "^0.14.1",
"lint-staged": "^4.0.0",
"prettier": "^1.4.4"
},
"license": "MIT",
"engines": {
"node": ">=8.0"
},
"scripts": {
"prettier": "prettier --no-bracket-spacing --print-width 80 --single-quote --trailing-comma es5 --write index.js examples/*.js examples/**/*.js",
"lint": "EFF_NO_LINK_RULES=true eslint . --format 'node_modules/eslint-friendly-formatter'"
}
}