👷‍♂️ Prepare package.json for npm install

This commit is contained in:
C-3PO 2018-10-19 00:00:25 +02:00
parent e21b9b83ef
commit c1f95c6adf
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
2 changed files with 10 additions and 1 deletions

View file

@ -7,6 +7,7 @@
"url": "https://git.jedipedia.net/swtor/ssn.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "rm -rf dist && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
@ -17,5 +18,12 @@
"dependencies": {
"ssn-installer": "git+https://git.jedipedia.net/swtor/ssn-installer.git",
"xml-js": "^1.6.8"
}
},
"files": [
"src/index.ts",
"src/*/*.ts",
"src/*/*/*.ts",
"src/*/*/*/*.ts",
"tsconfig.json"
]
}

View file

@ -1,6 +1,7 @@
{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"inlineSourceMap": true,
"inlineSources": true,
"module": "commonjs",