-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "draft-js-export-pdfmake",
"description": "DraftJs: Export ContentState to PdfMake",
"version": "0.1.2",
"main": "./lib/stateToPdfMake.js",
"author": {
"name": "Datagenno Interactive Research",
"url": "https://www.datagenno.com"
},
"contributors": [
{
"name": "Rodolfo Ribeiro Barreto"
},
{
"name": "Julio Betta",
"email": "[email protected]"
}
],
"scripts": {
"build": "node_modules/.bin/babel ./src --out-dir ./lib",
"output": "node examples/output.js",
"test": "jest"
},
"keywords": [
"draft-js",
"export-pdfmake"
],
"repository": {
"type": "git",
"url": "git+https://github.com/datagenno/draft-js-export-pdfmake.git"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-jest": "21.0.2",
"babel-loader": "7.0.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-es2015": "6.24.1",
"jest": "21.0.2",
"pdfmake": "0.1.32",
"react": "15.6.1",
"react-dom": "15.6.1"
},
"dependencies": {
"draft-js": "0.10.1",
"draft-js-utils": "1.1.0"
}
}