argument-parser/package.json
2018-10-25 07:02:37 +02:00

25 lines
662 B
JSON

{
"name": "argument-parser",
"license": "AGPL-3.0-or-later",
"homepage": "https://git.jedipedia.net/swtor/argument-parser",
"repository": {
"type": "git",
"url": "https://git.jedipedia.net/swtor/argument-parser.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"postinstall": "npm start",
"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"
},
"files": [
"src/*.ts",
"src/*/*.ts",
"tsconfig.json"
],
"devDependencies": {
"@types/node": "^10.12.0"
}
}