forked from SamyPesse/draft-js-prism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.42 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
{
"name": "draft-js-prism",
"version": "1.0.2",
"description": "Code highlighting for DraftJS",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify -t [ babelify --presets [ es2015 react ] ] ./demo/main.js > ./demo/dist.js; cp ./node_modules/prismjs/themes/prism.css ./demo/prism.css; cp ./node_modules/draft-js/dist/Draft.css ./demo/draft.css",
"deploy": "npm run build; gh-pages -d ./demo",
"watch": "watch 'npm run build' ./lib",
"serve": "http-server -p 9090 demo/",
"start": "npm run build; parallelshell 'npm run serve -s' 'npm run watch -s'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamyPesse/draft-js-prism.git"
},
"keywords": [
"draft-js"
],
"author": "Samy Pesse <samypesse@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SamyPesse/draft-js-prism/issues"
},
"homepage": "https://github.com/SamyPesse/draft-js-prism#readme",
"dependencies": {
"extend": "^3.0.0",
"immutable": "*",
"prismjs": "^1.5.0"
},
"devDependencies": {
"draft-js": "^0.7.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"gh-pages": "^0.11.0",
"http-server": "^0.9.0",
"watch": "^0.18.0",
"parallelshell": "2.0.0"
}
}