-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.56 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
{
"name": "slate-wrapped-block-plugin",
"description": "A Slate plugin that auto wrap selected block with some custom block",
"version": "0.2.0",
"license": "MIT",
"repository": "git://github.com/oozou/slate-wrapped-block-plugin.git",
"main": "./dist/index.js",
"scripts": {
"clean": "rm -rf ./dist ./node_modules",
"dist": "babel ./lib --out-dir ./dist",
"example": "browserify ./example/index.js --debug --transform babelify > ./example/build.js",
"gh-pages": "npm run dist && npm run example && gh-pages --dist ./example",
"lint": "eslint 'lib/**/*.js' 'example/index.js'",
"prepublish": "npm run dist",
"start": "http-server ./example -p 8888",
"test": "npm run lint",
"watch": "npm-run-all --parallel --print-label watch:dist watch:example start",
"watch:dist": "babel ./lib --out-dir ./dist --watch",
"watch:example": "watchify ./example/index.js --debug --transform babelify --outfile ./example/build.js"
},
"peerDependencies": {
"slate": "*"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"eslint": "^3.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-react": "^5.2.2",
"gh-pages": "^0.11.0",
"http-server": "^0.9.0",
"npm-run-all": "^2.3.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"slate": "^0.16.10",
"watchify": "^3.7.0"
},
"keywords": [
"slate"
]
}