This repository has been archived by the owner on Feb 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
71 lines (71 loc) · 2.48 KB
/
package.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@gitbook/slate-edit-table",
"description": "A Slate plugin to handle keyboard events in tables.",
"version": "0.18.1",
"license": "Apache-2.0",
"repository": "git://github.com/GitbookIO/slate-edit-table.git",
"main": "./dist/index.js",
"files": [
"dist",
"*.md"
],
"peerDependencies": {
"immutable": "^3.8.1",
"@gitbook/slate": "^0.34.7",
"@gitbook/slate-react": "^0.13.4",
"@gitbook/slate-schema-violations": "^0.1.20"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^13.3.0",
"eslint": "^4.15.0",
"eslint-config-gitbook": "^3.0.0",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.5.1",
"expect": "^1.20.2",
"flow-bin": "^0.73.0",
"flow-copy-source": "^1.2.1",
"gh-pages": "^0.11.0",
"http-server": "^0.9.0",
"immutable": "^3.8.2",
"mocha": "^3.0.1",
"prettier": "^1.9.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"@gitbook/slate": "^0.34.7",
"slate-hyperprint": "^2.2.4",
"@gitbook/slate-hyperscript": "^0.5.22",
"@gitbook/slate-react": "^0.13.4",
"@gitbook/slate-schema-violations": "^0.1.20",
"@gitbook/slate-simulator": "^0.4.39",
"watchify": "^3.7.0"
},
"scripts": {
"build:dist": "rm -r ./dist; babel ./lib --out-dir ./dist",
"build:flow": "flow-copy-source -v ./lib/ ./dist/",
"prepublish": "npm run build:dist && npm run build:flow",
"postpublish": "npm run deploy-example",
"lint": "eslint ./",
"build-example": "browserify ./example/main.js -o ./example/bundle.js -t [ babelify --presets [ env react stage-0 ] ]",
"watch-example": "watchify ./example/main.js -o ./example/bundle.js -t [ babelify --presets [ env react stage-0 ] ] -v",
"serve-example": "http-server ./example/ -p 8080",
"start": "npm run build-example; npm run serve-example",
"deploy-example": "npm run build-example; gh-pages -d ./example",
"test": "./node_modules/.bin/mocha ./tests/all.js --compilers js:babel-register --reporter=list"
},
"keywords": [
"slate"
]
}