forked from papandreou/node-inkscape
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 KB
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": "inkscape",
"version": "1.0.0",
"description": "The inkscape utility as a readable/writable stream",
"main": "lib/Inkscape.js",
"directories": {
"test": "test"
},
"dependencies": {
"async": "=0.2.9",
"gettemporaryfilepath": "=0.0.1"
},
"devDependencies": {
"coveralls": "2.11.9",
"istanbul": "0.3.15",
"jshint": "2.8.0",
"mocha": "2.4.5",
"sinon": "^1.17.3",
"unexpected": "^10.11.1",
"unexpected-sinon": "^10.2.0",
"unexpected-stream": "^2.0.3"
},
"scripts": {
"lint": "jshint .",
"test": "mocha && npm run lint",
"travis": "npm test && npm run coverage && (<coverage/lcov.info coveralls || true)",
"coverage": "NODE_ENV=development istanbul cover _mocha -- --reporter dot && echo google-chrome coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git://github.com/papandreou/node-inkscape.git"
},
"keywords": [
"inkscape",
"svg",
"png",
"image",
"optimization",
"stream",
"filter",
"read/write",
"duplex"
],
"author": "Andreas Lind <andreas@one.com>",
"license": "BSD"
}