-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.23 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@harvest-profit/doc-flux",
"version": "1.1.4",
"description": "Flux/React framework for creating any document, just define a few DOM components to transform into the document.",
"main": "dist/index.js",
"repository": "https://github.com/HarvestProfit/DocFlux",
"author": "Jake Humphrey <[email protected]>",
"contributors": [],
"license": "MIT",
"scripts": {
"build": "babel src -d dist",
"build-docs": "jsdoc src/* -t ./node_modules/ink-docstrap/template --configure jsdoc.conf.json --destination docs --readme README.md",
"clean": "rm -rf ./dist",
"clean-docs": "rm -rf ./docs",
"docs": "yarn run clean-docs && yarn run build-docs",
"publish-docs": "yarn run docs && gh-pages -d docs",
"prepublish": "yarn run clean && yarn run build",
"report-coverage": "coveralls < ./coverage/lcov.info",
"test": "jest test/ --coverage"
},
"jest": {
"collectCoverageFrom": [
"src/**/!(index).{js,jsx}"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"(.data.js)$"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"(.data.js)$"
]
},
"keywords": [
"harvest",
"profit",
"react",
"component",
"components",
"documents",
"document",
"flux",
"pdf",
"excel",
"csv"
],
"files": [
"README.md",
"dist"
],
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-classes": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"coveralls": "^3.1.0",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.2",
"gh-pages": "^3.1.0",
"ink-docstrap": "^1.3.2",
"jest": "^26.4.2",
"jsdoc": "^3.6.5"
},
"dependencies": {
"prop-types": "^15.7.2"
}
}