forked from glebtv/slate-code-block
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.12 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
{
"name": "@whatever-company/slate-code-block",
"description": "A Slate plugin to handle code blocks editing. Fork from GitbookIO/slate-edit-code",
"version": "1.0.1",
"license": "Apache-2.0",
"repository": "[email protected]:whatever-company/slate-code-block.git",
"main": "./dist/index.js",
"dependencies": {
"is-hotkey": "^0.1.3"
},
"engines": {
"npm": ">=6.0.0"
},
"peerDependencies": {
"immutable": "^4.0.0-rc.12",
"slate": "^0.47.3",
"slate-react": "^0.22.4",
"slate-schema-violations": "^0.1.39"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/register": "^7.17.7",
"@zarv1k/slate-hyperprint": "^3.0.1",
"babel-eslint": "^10.0.3",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"eslint": "^6.8.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"expect": "^25.1.0",
"gh-pages": "^2.2.0",
"http-server": "^0.12.1",
"immutable": "^4.0.0-rc.12",
"mocha": "^7.0.1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"slate": "^0.47.4",
"slate-hyperscript": "^0.13.3",
"slate-react": "^0.22.4",
"slate-schema-violations": "^0.1.39",
"standard-version": "^7.1.0"
},
"scripts": {
"build": "babel ./lib --out-dir ./dist",
"prepublishOnly": "npm run build",
"lint": "eslint ./",
"test": "mocha --require @babel/register ./tests/all.js",
"build-example": "browserify ./example/main.js -o ./example/bundle.js -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] --plugins [ @babel/plugin-proposal-class-properties ] ] -d",
"serve-example": "http-server ./example/ -p 8081 -c-1",
"start": "npm run build-example && npm run serve-example",
"deploy-example": "npm run build-example && gh-pages -d ./example",
"release": "standard-version"
},
"keywords": [
"slate"
]
}