-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 903 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
33
34
35
36
37
38
{
"name": "pclkit",
"description": "A PCL generation library for Node.js",
"version": "0.0.6",
"author": "Alexandre Tiertant <a.tiertant@atlantis-software.net>",
"license": "MIT",
"main": "./lib/document.js",
"repository": "https://github.com/Atlantis-Software/pclkit",
"homepage": "https://github.com/Atlantis-Software/pclkit",
"keywords": [
"pcl",
"pcl writer",
"pcl generator",
"graphics",
"vector",
"printer"
],
"scripts": {
"test": "nyc mocha --timeout=10000 --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./"
},
"dependencies": {
"fontkit": "~1.8.1",
"jpeg-js": "~0.4.3",
"linebreak": "~1.0.2",
"pngjs": "~6.0.0"
},
"devDependencies": {
"coveralls": "~3.0.2",
"istanbul": "0.4.5",
"mocha": "~5.2.0",
"nyc": "~13.2.0"
},
"engines": {
"node": ">= 6"
}
}