UNPKG

1.53 kBJSONView Raw
1{
2 "name": "@mainframe/bot-sdk",
3 "version": "0.2.0",
4 "main": "lib/index.js",
5 "repository": "git@github.com:thusfresh/bot-sdk-js.git",
6 "author": "Paul Le Cam <paul@mainframe.com>",
7 "license": "MIT",
8 "scripts": {
9 "build:clean": "del lib",
10 "build:compile": "babel src --out-dir lib --ignore test.js",
11 "build:flow": "flow-copy-source src lib --ignore **/*.test.js",
12 "build": "npm run build:clean && npm run build:compile && npm run build:flow",
13 "flow": "flow check",
14 "lint": "eslint ./src",
15 "jest": "jest",
16 "test": "npm run lint && npm run flow",
17 "start": "npm test && npm run build",
18 "prepublishOnly": "npm run build"
19 },
20 "dependencies": {
21 "debug": "^3.0.0",
22 "koa": "^2.3.0",
23 "koa-bodyparser": "^4.2.0",
24 "koa-router": "^7.2.1",
25 "node-fetch": "^1.7.2"
26 },
27 "devDependencies": {
28 "babel-cli": "^6.26.0",
29 "babel-core": "^6.26.0",
30 "babel-eslint": "^7.2.3",
31 "babel-plugin-syntax-export-extensions": "^6.13.0",
32 "babel-plugin-syntax-object-rest-spread": "^6.13.0",
33 "babel-plugin-transform-export-extensions": "^6.22.0",
34 "babel-plugin-transform-object-rest-spread": "^6.26.0",
35 "babel-preset-env": "^1.6.0",
36 "babel-preset-flow": "^6.23.0",
37 "del-cli": "^1.0.0",
38 "eslint": "^4.5.0",
39 "eslint-config-prettier": "^2.3.0",
40 "eslint-plugin-flowtype": "^2.35.0",
41 "eslint-plugin-prettier": "^2.2.0",
42 "flow-bin": "^0.53.1",
43 "flow-copy-source": "^1.2.1",
44 "jest": "^20.0.4",
45 "prettier": "^1.5.3"
46 }
47}