forked from SamyPesse/draft-js-prism
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.51 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
{
"name": "draft-js-prism",
"version": "1.0.3",
"description": "Code highlighting for DraftJS",
"main": "./lib/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha \"./lib/__tests__/*.js\" --bail --reporter=list",
"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 <[email protected]>",
"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": "workfloapp/prism"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"draft-js": "^0.7.0",
"expect": "^1.20.1",
"gh-pages": "^0.11.0",
"http-server": "^0.9.0",
"mocha": "^2.5.3",
"parallelshell": "2.0.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"watch": "^0.18.0"
}
}