diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..e0b9e69 --- /dev/null +++ b/package.json @@ -0,0 +1,40 @@ +{ + "name": "iii-for-vk", + "version": "0.0.1", + "description": "Simple automatic reply to incoming messages.", + "homepage": "https://github.com/valentineus/iii-for-vk", + "main": "lib/core.js", + "scripts": { + "check": "eslint ./src/lib/core.js", + "compile": "npm run check && babel --presets es2015 --minified --no-comments --source-maps --out-dir ./lib/ ./src/lib/", + "prepublish": "npm run compile" + }, + "repository": { + "type": "git", + "url": "git://github.com/valentineus/iii-for-vk.git" + }, + "keywords": [ + "simple", + "bot", + "iii", + "vk" + ], + "author": "Valentin Popov <info@valentineus.link>", + "bugs": { + "url": "https://github.com/valentineus/iii-for-vk/issues" + }, + "license": "MIT", + "dependencies": { + "iii-client": "^1.0.0", + "inherits": "^2.0.3", + "querystring": "^0.2.0", + "url-parse-lax": "^1.0.0", + "vksdk": "^5.3.2" + }, + "devDependencies": { + "babel-cli": "^6.24.1", + "babel-core": "^6.24.1", + "babel-preset-es2015": "^6.24.1", + "eslint": "^3.19.0" + } +} |