forked from GitbookIO/slate-edit-list
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 2.24 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
{
"name": "front-slate-edit-list",
"description": "A Slate plugin to handle keyboard events in lists.",
"version": "0.12.2-1",
"license": "Apache-2.0",
"repository": "git://github.com/GitbookIO/slate-edit-list.git",
"main": "./dist/index.js",
"peerDependencies": {
"immutable": "^3.8.2",
"slate": "^0.32.0"
},
"files": [
"dist",
"*.md"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.0",
"babel-plugin-module-resolver": "^3.1.1",
"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": "^10.0.0",
"browserify": "^16.2.0",
"eslint": "^5.6.0",
"eslint-config-gitbook": "4.0.1",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-flowtype": "^2.48.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.8.2",
"expect": "^23.6.0",
"flow-bin": "^0.81.0",
"flow-copy-source": "^2.0.2",
"gh-pages": "^2.0.0",
"http-server": "^0.11.0",
"immutable": "^3.8.2",
"mocha": "^5.2.0",
"prettier": "^1.13.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"slate": "^0.41.1",
"slate-hyperprint": "^2.2.5",
"slate-hyperscript": "^0.10.6",
"slate-react": "^0.18.9",
"stringify": "^5.1.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",
"lint": "eslint ./",
"build-example": "browserify ./example/main.js -o ./example/bundle.js -t [ babelify --presets [ env react stage-0 ] ] -t [ stringify --extensions [.yaml] ]",
"serve-example": "http-server ./example/ -p 8081",
"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"
]
}