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 20
/
Copy pathpackage.json
51 lines (51 loc) · 1.59 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
{
"name": "@gitbook/slate-prism",
"description": "A Slate plugin to highlight code blocks using PrismJS.",
"version": "0.6.0",
"license": "Apache-2.0",
"repository": "git://github.com/GitbookIO/slate-prism.git",
"main": "./dist/index.js",
"dependencies": {},
"peerDependencies": {
"immutable": "*",
"prismjs": "*",
"react": "*",
"react-dom": "*",
"@gitbook/slate": "^0.34.7"
},
"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-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",
"gh-pages": "^1.0.0",
"http-server": "^0.10.0",
"immutable": "^3.8.2",
"prismjs": "^1.15.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"@gitbook/slate": "^0.34.7",
"@gitbook/slate-edit-code": "0.15.5",
"@gitbook/slate-hyperscript": "^0.5.22",
"@gitbook/slate-react": "^0.13.4"
},
"scripts": {
"prepublish": "babel ./lib --out-dir ./dist",
"lint": "eslint ./lib ./example",
"build-example": "browserify ./example/main.js -o ./example/bundle.js -t [ babelify --presets [ es2015 react stage-0 ] ]",
"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"
},
"keywords": [
"slate"
]
}