-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "node-sketch",
"version": "0.14.1",
"description": "Javascript library to manipulate sketch files",
"main": "index.js",
"author": "Oscar Otero",
"license": "MIT",
"dependencies": {
"jszip": "^3.2.1",
"yargs-parser": "^20.1.0"
},
"bin": {
"node-sketch": "bin.js"
},
"devDependencies": {
"docdash": "^1.1.0",
"gh-pages": "^2.0.1",
"jsdoc": "^3.4.3",
"jsondiffpatch": "^0.4.1",
"mocha": "^7.0.1",
"prettier": "^2.0.2"
},
"files": [
"index.js",
"bin.js",
"src/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oscarotero/node-sketch.git"
},
"keywords": [
"sketch"
],
"bugs": {
"url": "https://github.com/oscarotero/node-sketch/issues"
},
"scripts": {
"prettier": "prettier --single-quote '{src,tests}/*.js' index.js demos/*/*.js --tab-width 4 --print-width=120 --write",
"docs": "rm -rf docs && jsdoc src/*.js README.md index.js --template node_modules/docdash -d ./docs/",
"publish-docs": "gh-pages -d docs",
"test": "mocha tests/*.js",
"example": "node examples"
},
"homepage": "https://github.com/oscarotero/node-sketch"
}