aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2017-05-29 01:46:00 +0300
committerValentin Popov <info@valentineus.link>2017-05-29 01:46:00 +0300
commit9c0a7f8bee1ed3f3aa924e592225d9b9cf2e18bf (patch)
tree38d03ec46b3a33647fba8a5e686d08a18bf95b12 /package.json
downloadiii-client-9c0a7f8bee1ed3f3aa924e592225d9b9cf2e18bf.tar.xz
iii-client-9c0a7f8bee1ed3f3aa924e592225d9b9cf2e18bf.zip
Release of version 0.0.1.
Diffstat (limited to 'package.json')
-rw-r--r--package.json37
1 files changed, 37 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..14601fb
--- /dev/null
+++ b/package.json
@@ -0,0 +1,37 @@
+{
+ "name": "iii-client",
+ "version": "0.0.1",
+ "description": "Simple API for communicating with the bot of the \"iii.ru\" service.",
+ "homepage": "https://github.com/valentineus/iii-client",
+ "license": "MIT",
+ "author": {
+ "name": "Valentin Popov",
+ "email": "info@valentineus.link",
+ "url": "https://valentineus.link/"
+ },
+ "bugs": {
+ "url": "https://github.com/valentineus/iii-client/issues"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/valentineus/iii-client.git"
+ },
+ "keywords": [
+ "simple",
+ "client",
+ "iii",
+ "bot"
+ ],
+ "main": "./lib/index.js",
+ "devDependencies": {
+ "babel-cli": "^6.24.1",
+ "babel-core": "^6.24.1",
+ "babel-preset-es2015": "^6.24.1",
+ "jsdoc": "^3.4.3"
+ },
+ "scripts": {
+ "jsdoc": "jsdoc --destination ./docs ./src/index.js",
+ "compile": "babel --presets es2015 --minified --no-comments --source-maps --out-dir ./lib/ ./src/",
+ "prepublish": "npm run compile && npm run jsdoc"
+ }
+}