-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
64 lines (64 loc) · 1.94 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
{
"name": "slate-hyperprint",
"description": "A Slate plugin to print Slate models to their slate-hyperscript representation.",
"version": "2.3.0",
"license": "Apache-2.0",
"repository": "git://github.com/GitbookIO/slate-hyperprint.git",
"main": "./dist/index.js",
"bin": {
"slate-hyperprint": "./dist/bin/cli.js"
},
"dependencies": {
"indent-string": "^3.2.0",
"is-plain-object": "^2.0.4",
"js-yaml": "^3.12.0",
"meow": "^5.0.0",
"prettier": "1.13.6",
"stringify-object": "^3.2.2"
},
"peerDependencies": {
"slate": "*"
},
"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",
"eslint-plugin-prettier": "^2.4.0",
"expect": "^1.20.2",
"flow-bin": "^0.57.3",
"gh-pages": "^1.0.0",
"http-server": "^0.10.0",
"immutable": "^3.8.2",
"mocha": "^3.0.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"slate": "^0.34.7",
"slate-hyperscript": "^0.5.9",
"slate-react": "^0.12.3"
},
"scripts": {
"build": "babel ./src --out-dir ./dist",
"prepublish": "npm run build",
"lint": "eslint ./src ./website",
"test": "./node_modules/.bin/mocha ./tests/all.js --compilers js:babel-register --reporter=list",
"build-website": "browserify ./website/main.js -o ./website/bundle.js -t [ babelify --presets [ es2015 react stage-0 ] ]",
"serve-website": "http-server ./website/ -p 8080",
"start": "npm run build-website; npm run serve-website",
"deploy-website": "npm run build-website; gh-pages -d ./website"
},
"keywords": [
"slate",
"hyperscript",
"print",
"jsx"
]
}