forked from diegomura/react-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.89 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
{
"name": "@react-pdf/build",
"version": "0.4.1",
"description": "A tiny React renderer to generate PDF documents.",
"scripts": {
"build": "npm run build:clean && lerna run build --ignore @react-pdf/example-*",
"build:watch": "lerna run build:watch --concurrency=1000 --stream --ignore @react-pdf/examples",
"build:clean": "lerna run build:clean",
"prepublish": "npm run build",
"postinstall": "lerna bootstrap && opencollective postinstall",
"example": "babel-node ./examples/index.js",
"precommit": "npm run example -- all && git add . && lint-staged",
"lint": "eslint performance src --ignore-path .gitignore",
"test": "jest --config .jestrc"
},
"lint-staged": {
"*.js": [
"npm run lint",
"prettier --single-quote --trailing-comma=all --write",
"git add"
]
},
"keywords": [
"react",
"reactjs",
"renderer",
"pdf"
],
"author": "Diego Muracciole <diegomuracciole@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.1.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"husky": "^0.13.2",
"lint-staged": "^3.4.2",
"mockdate": "^2.0.1",
"prettier": "^1.3.1"
},
"dependencies": {
"jest": "^20.0.4",
"lerna": "2.0.0-rc.5",
"opencollective": "^1.0.3"
},
"homepage": "https://github.com/diegomura/react-pdf#readme",
"repository": "git@github.com:diegomura/react-pdf.git",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-pdf",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}