aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: c4f167c29b2a914c45b86b76c4c116c1f8c2c5a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
  "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"
  }
}