mirror of
https://github.com/valentineus/iii-client.git
synced 2025-05-15 04:11:17 +03:00
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"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-loader": "^7.1.2",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"eslint": "^3.19.0",
|
|
"webpack": "^3.6.0"
|
|
},
|
|
"scripts": {
|
|
"build-node": "babel --out-file ./dist/index.js ./src/index.js",
|
|
"build-browser": "webpack --config webpack.config.js",
|
|
"build": "npm run build-browser && npm run build-node",
|
|
"check": "eslint ./src/*"
|
|
}
|
|
}
|