graphviz-builder/package.json

44 lines
1.0 KiB
JSON
Raw Normal View History

2020-04-17 15:43:34 +02:00
{
2020-05-05 19:23:05 +02:00
"name": "@sapphirecode/graphviz-builder",
2020-04-24 13:07:25 +02:00
"main": "dist/lib/index.js",
2020-08-21 13:17:17 +02:00
"version": "1.3.3",
2020-07-19 14:03:57 +02:00
"author": {
"name": "Timo Hocker",
"email": "timo@scode.ovh"
},
"bugs": "https://redmine.scode.ovh/projects/graphviz-builder",
2020-05-17 17:17:39 +02:00
"description": "constructing graphviz files using an easy typescript interface",
"repository": {
"type": "git",
2020-07-19 14:03:57 +02:00
"url": "https://git.scode.ovh:timo/graphviz-builder.git"
2020-05-17 17:17:39 +02:00
},
2020-04-17 15:43:34 +02:00
"license": "MIT",
"devDependencies": {
2020-05-17 17:17:39 +02:00
"@sapphirecode/eslint-config-ts": "^1.1.4",
2020-10-05 19:10:33 +02:00
"@types/jasmine": "^3.5.14",
"@types/node": "^14.11.2",
2020-05-17 17:17:39 +02:00
"eslint": "^7.0.0",
2020-10-05 19:10:33 +02:00
"jasmine": "^3.6.1",
"jasmine-ts": "^0.3.0",
2020-04-17 15:43:34 +02:00
"nyc": "^15.0.1",
2020-10-05 19:10:33 +02:00
"ts-node": "^9.0.0",
2020-08-21 13:17:17 +02:00
"typescript": "^4.0.2"
2020-04-17 15:43:34 +02:00
},
"scripts": {
2020-04-24 09:49:22 +02:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
2020-10-05 19:10:33 +02:00
"test": "nyc jasmine-ts --config=\"jasmine.json\"",
2020-04-24 12:06:46 +02:00
"compile": "tsc"
2020-04-24 12:39:55 +02:00
},
"files": [
2020-04-28 08:06:08 +02:00
"/dist/lib/",
2020-04-24 12:39:55 +02:00
"LICENSE"
2020-04-24 17:01:26 +02:00
],
"dependencies": {
2020-05-17 17:17:39 +02:00
"@sapphirecode/encoding-helper": "^1.0.38"
2020-07-19 14:03:57 +02:00
},
"keywords": [
"graphviz",
"generator"
]
2020-08-21 13:17:17 +02:00
}