diff options
author | Valentin Popov <info@valentineus.link> | 2017-09-28 15:58:15 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2017-09-28 15:58:15 +0300 |
commit | be7f975919e013a48d0baf178f4b6bb18fecf733 (patch) | |
tree | 0d541b2dceb6721dae3beb11dfad6104c9dfd185 /package.json | |
parent | 9bbf6408667dac34afaf2ff6b7f0ce0d57b0e6b1 (diff) | |
download | iii-client-be7f975919e013a48d0baf178f4b6bb18fecf733.tar.xz iii-client-be7f975919e013a48d0baf178f4b6bb18fecf733.zip |
Redesigned assembly package
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 69 |
1 files changed, 34 insertions, 35 deletions
diff --git a/package.json b/package.json index c4f167c..2fcf507 100644 --- a/package.json +++ b/package.json @@ -1,37 +1,36 @@ { - "name": "iii-client", - "version": "2.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", - "eslint": "^3.19.0" - }, - "scripts": { - "check": "eslint ./src/*", - "compile": "babel --presets es2015 --minified --no-comments --source-maps --out-file ./lib/index.js ./src/index.js", - "prepublish": "npm run check && npm run compile" - } + "name": "iii-client", + "version": "2.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", + "eslint": "^3.19.0" + }, + "scripts": { + "build": "babel --source-maps --out-file ./dist/index.js ./src/index.js", + "check": "eslint ./src/*" + } } |