aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 95aba53532e2d92a6a375c39b1bd1307a3be1660 (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
38
39
40
{
    "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/*"
    }
}