(Initial) Commit

This commit is contained in:
Dominik Winter
2016-12-01 15:03:10 +01:00
commit 9af1ab2380
6 changed files with 2861 additions and 0 deletions

34
package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "decrypt-dlc-cli",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"bin": {
"decrypt-dlc": "bin/decrypt-dlc"
},
"scripts": {
"test": "ava"
},
"keywords": [],
"author": "Dominik Winter <dominik.winter92@gmail.com>",
"license": "MIT",
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
}
},
"dependencies": {
"commander": "^2.9.0",
"decrypt-dlc": "^0.0.1"
},
"devDependencies": {
"ava": "^0.17.0",
"execa": "^0.5.0"
},
"ava": {
"files": [
"test/test.js"
]
}
}