1
mirror of https://github.com/valentineus/iii-for-vk.git synced 2025-12-21 14:23:21 +04:00

Release of version 0.0.1.

This commit is contained in:
Valentin Popov
2017-06-05 10:51:29 +00:00
commit a078043572
10 changed files with 2711 additions and 0 deletions

40
package.json Normal file
View File

@@ -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"
}
}