graphviz-builder/package.json

25 lines
556 B
JSON
Raw Normal View History

2020-04-17 15:43:34 +02:00
{
2020-04-24 12:33:23 +02:00
"name": "@scode/graphviz-builder",
"version": "1.0.0",
2020-04-17 15:43:34 +02:00
"main": "index.js",
2020-04-24 12:02:32 +02:00
"author": "Timo Hocker <timo@scode.ovh>",
2020-04-17 15:43:34 +02:00
"license": "MIT",
"devDependencies": {
2020-04-24 12:02:32 +02:00
"@ava/typescript": "^1.1.1",
"@scode/eslint-config-ts": "^1.0.22",
"ava": "^3.7.1",
2020-04-17 15:43:34 +02:00
"eslint": "^6.8.0",
"nyc": "^15.0.1",
"typescript": "^3.8.3"
},
"scripts": {
2020-04-24 09:49:22 +02:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
2020-04-24 12:02:32 +02:00
"test": "tsc && nyc ava",
2020-04-24 12:06:46 +02:00
"ci": "yarn && node jenkins.js",
"compile": "tsc"
2020-04-24 12:39:55 +02:00
},
"files": [
"/dist/",
"LICENSE"
]
}