aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: d1e3fd135ceb61b602a238e625072468cfe8a94c (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
41
42
43
44
45
46
47
{
    "name": "iii-client",
    "version": "3.2.2",
    "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": "./dist/standalone.js",
    "devDependencies": {
        "babel-cli": "^6.24.1",
        "babel-core": "^6.24.1",
        "babel-preset-es2015": "^6.24.1",
        "babel-preset-es2015-rollup": "^3.0.0",
        "chai": "^4.1.2",
        "eslint": "^3.19.0",
        "mocha": "^3.5.3",
        "rollup": "^0.50.0",
        "rollup-plugin-babel": "^3.0.2",
        "rollup-plugin-node-builtins": "^2.1.2",
        "rollup-plugin-node-globals": "^1.1.0",
        "uuid": "^3.1.0"
    },
    "scripts": {
        "build-standalone": "babel src/index.js --out-file dist/standalone.js",
        "build-browser": "rollup --config rollup.config.js",
        "build": "npm run build-browser && npm run build-standalone",
        "test": "mocha src/test.js --compilers js:babel-core/register",
        "check": "eslint ./src/index.js"
    }
}