summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-core/package.json
blob: 071837b5cf50aaaace86f1b5daaf065190c5399f (plain)
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
{
  "name": "gitbook-core",
  "version": "0.0.0",
  "description": "Core for GitBook plugins API",
  "main": "./lib/index.js",
  "dependencies": {
    "immutable": "^3.8.1",
    "react": "^15.3.1",
    "react-dom": "^15.3.1",
    "react-helmet": "^3.1.0",
    "react-redux": "^4.4.5",
    "redux": "^3.5.2",
    "redux-thunk": "^2.1.0"
  },
  "devDependencies": {
    "babel-cli": "^6.14.0",
    "babel-preset-es2015": "^6.14.0",
    "babel-preset-react": "^6.11.1",
    "babel-preset-stage-2": "^6.13.0",
    "browserify": "^13.1.0",
    "envify": "^3.4.1",
    "uglify-js": "^2.7.3"
  },
  "scripts": {
    "dist-lib": "rm -rf lib/ && babel -d lib/ src/",
    "dist-standalone": "browserify -r react -r react-dom -r ./lib/index.js:gitbook-core | uglifyjs -c > gitbook.core.js.min",
    "prepublish": "npm run dist-lib && npm run dist-standalone"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/GitbookIO/gitbook.git"
  },
  "author": "GitBook Inc. <contact@gitbook.com>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/GitbookIO/gitbook/issues"
  }
}