modelling/package.json

23 lines
481 B
JSON
Raw Normal View History

2020-04-23 17:09:14 +02:00
{
"name": "@scode/modelling",
"version": "1.0.0",
2020-04-23 17:23:18 +02:00
"main": "dist/index.js",
2020-05-02 19:40:53 +02:00
"author": "Timo Hocker <timo@scode.ovh>",
2020-04-23 17:09:14 +02:00
"license": "MIT",
"devDependencies": {
2020-05-02 19:35:01 +02:00
"@scode/eslint-config-ts": "^1.0.27",
2020-04-23 17:09:14 +02:00
"eslint": "^6.8.0",
"typescript": "^3.8.3"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
2020-04-23 17:18:40 +02:00
"test": "echo \"no test\"",
2020-04-23 17:19:43 +02:00
"ci": "yarn && node jenkins.js",
"compile": "tsc"
2020-05-02 19:38:32 +02:00
},
"files": [
"/dist/",
"LICENSE"
]
2020-05-04 20:04:38 +02:00
}