-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
54 lines (54 loc) · 1.84 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
{
"name": "slate-deep-table",
"description": "A Slate plugin to handle tables containing complex content.",
"version": "0.9.7",
"license": "Apache-2.0",
"repository": "git://github.com/jasonphillips/slate-deep-table.git",
"main": "./dist/index.js",
"dependencies": {
"slate-html-serializer": "^0.8.0"
},
"peerDependencies": {
"react": ">=16.6.0",
"react-dom": ">=16.6.0",
"slate": "0.47.x",
"immutable": ">=3.8.1"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"browserify": "^16.3.0",
"eslint": "^4.18.2",
"eslint-config-gitbook": "1.4.0",
"expect": "^1.20.2",
"gh-pages": "^0.11.0",
"http-server": "^0.11.1",
"immutable": "^3.8.1",
"jsdom": "^15.1.1",
"mocha": "^6.1.4",
"react": ">=16.6.0",
"react-dom": ">=16.6.0",
"slate": "^0.47.x",
"slate-hyperscript": "^0.13.0",
"slate-react": "^0.22.0",
"watchify": "^3.11.1"
},
"scripts": {
"prepublish": "babel ./lib --out-dir ./dist",
"postpublish": "npm run deploy-example",
"lint": "eslint ./",
"build-example": "browserify ./example/main.js -o ./example/bundle.js -t [ babelify --presets [ es2015 react ] --plugins transform-class-properties ] ",
"watch-example": "watchify ./example/main.js -o ./example/bundle.js -t [ babelify --presets [ es2015 react ] --plugins transform-class-properties ] ",
"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",
"test": "./node_modules/.bin/mocha ./tests/*.js --require babel-register --reporter=list"
},
"keywords": [
"slate"
]
}