-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
69 lines (69 loc) · 2.16 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
65
66
67
68
69
{
"name": "kattappa",
"version": "0.8.1",
"description": "A block based rich text editor with support of Images, embeds( Youtube, Instagram, Vine, Vimeo etc)",
"main": "./lib/index.js",
"scripts": {
"prepublish": "npm run npm",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production ./node_modules/.bin/webpack",
"npm": "./node_modules/.bin/babel ./src -d lib --ignore 'demo.js'",
"dev": "mkdir -p lib && cp index.template.html lib/index.html && ./node_modules/.bin/webpack-dev-server --host 0.0.0.0 --port 8080 --devtool eval --content-base lib/ --progress --colors --hot"
},
"repository": {
"type": "git",
"url": "https://github.com/brijeshb42/kattappa.git"
},
"keywords": [
"kattappa",
"block",
"editor",
"react",
"rich-text"
],
"author": "Brijesh Bittu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brijeshb42/kattappa/issues"
},
"homepage": "https://github.com/brijeshb42/kattappa",
"dependencies": {
"html-janitor": "^2.0.2",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"scribe-editor": "^3.2.0",
"scribe-plugin-curly-quotes": "^1.0.1",
"scribe-plugin-formatter-html-ensure-semantic-elements": "^1.0.1",
"scribe-plugin-formatter-plain-text-convert-new-lines-to-html": "^0.1.1",
"scribe-plugin-heading-command": "^0.1.0",
"scribe-plugin-sanitizer": "^0.1.10",
"scribe-plugin-smart-lists": "^0.1.8"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"imports-loader": "^0.6.5",
"node-sass": "^3.7.0",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"babel": {
"env": {
"production": {
"plugins": [
"transform-react-constant-elements",
"transform-react-inline-elements"
]
}
}
}
}