argument-parser/package.json

26 lines
662 B
JSON
Raw Normal View History

2018-10-23 23:17:03 +02:00
{
"name": "argument-parser",
"license": "AGPL-3.0-or-later",
"homepage": "https://git.jedipedia.net/swtor/argument-parser",
"repository": {
"type": "git",
2018-10-23 23:19:47 +02:00
"url": "https://git.jedipedia.net/swtor/argument-parser.git"
2018-10-23 23:17:03 +02:00
},
"main": "dist/index.js",
2018-10-23 23:19:47 +02:00
"types": "dist/index.d.ts",
2018-10-23 23:17:03 +02:00
"scripts": {
2018-10-23 23:19:47 +02:00
"postinstall": "npm start",
2018-10-23 23:17:03 +02:00
"start": "rm -rf dist && tsc && chmod +x dist/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"update": "rm -rf node_modules package-lock.json && npm install"
},
2018-10-23 23:19:47 +02:00
"files": [
"src/*.ts",
"src/*/*.ts",
2018-10-23 23:19:47 +02:00
"tsconfig.json"
],
2018-10-23 23:17:03 +02:00
"devDependencies": {
"@types/node": "^10.12.0"
}
}