This repository has been archived by the owner on Aug 23, 2021. It is now read-only.
forked from linonetwo/slate-code-block
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.04 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
{
"name": "@tildepage/slate-code-block",
"description": "A Slate plugin to handle code blocks editing. Fork from GitbookIO/slate-edit-code",
"version": "0.1.7",
"license": "Apache-2.0",
"repository": "git://github.com/cdunn/slate-code-block.git",
"main": "./dist/index.js",
"dependencies": {
"detect-indent": "^5.0.0",
"detect-newline": "^2.1.0",
"ends-with": "^1.0.1",
"is-hotkey": "^0.1.3",
"npm": "^6.9.0"
},
"peerDependencies": {
"immutable": "^3.8.2",
"slate": "^0.47.3",
"slate-react": "^0.22.4",
"slate-schema-violations": "^0.1.39"
},
"devDependencies": {
"@zarv1k/slate-hyperprint": "^3.0.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^13.3.0",
"eslint": "^4.10.0",
"eslint-config-gitbook": "^2.0.3",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.6.0",
"expect": "^1.20.2",
"flow-bin": "^0.57.3",
"gh-pages": "^0.11.0",
"http-server": "^0.9.0",
"immutable": "^3.8.1",
"mocha": "^3.0.1",
"prettier": "^1.13.3",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"slate": "^0.47.4",
"slate-hyperscript": "^0.13.3",
"slate-react": "^0.22.4",
"slate-schema-violations": "^0.1.39"
},
"scripts": {
"prepublish": "babel ./lib --out-dir ./dist",
"lint": "eslint ./",
"test": "./node_modules/.bin/mocha ./tests/all.js --compilers js:babel-register --reporter=list",
"postpublish": "npm run deploy-example",
"build-example": "browserify ./example/main.js -o ./example/bundle.js -t [ babelify --presets [ es2015 react stage-0 ] ]",
"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"
},
"keywords": [
"slate"
]
}