This repository has been archived by the owner on Feb 4, 2021. It is now read-only.
forked from gnestor/slate-sticky-inlines
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.72 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
{
"name": "slate-sticky-inlines",
"version": "0.8.0",
"description": "A Slate plugin that makes it possible to edit the edges of Inlines",
"repository": "https://github.com/YurkaninRyan/slate-sticky-inlines",
"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"
},
"keywords": [
"slate"
],
"author": "Ryan Yurkanin [[email protected]]",
"license": "MIT",
"peerDependencies": {
"immutable": "^3.8.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"eslint": "^4.5.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.2.1",
"gh-pages": "^1.0.0",
"http-server": "^0.10.0",
"immutable": "^3.8.2",
"npm-run-all": "^4.0.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"slate": "^0.32.1",
"slate-hyperscript": "^0.5.1",
"watchify": "^3.9.0"
},
"dependencies": {
"slate-react": "^0.11.1"
}
}