mirror of
https://github.com/sydev/decrypt-dlc-cli
synced 2026-01-03 08:18:02 +00:00
35 lines
606 B
JSON
35 lines
606 B
JSON
{
|
|
"name": "decrypt-dlc-cli",
|
|
"version": "0.0.1",
|
|
"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"
|
|
]
|
|
}
|
|
}
|