-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.96 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": "@dfe-digital/presentation-merger",
"version": "0.0.1-alpha.7",
"description": "Merge multiple presenation documents together into a single document",
"main": "lib/index.js",
"private": false,
"scripts": {
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"docs": "jsdoc src --destination docs",
"build": "BABEL_ENV=production babel src --out-dir lib",
"prepack": "npm run lint && npm run test && npm run build"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"bin": {
"presentation-merger": "./bin/presentation-merger.js"
},
"files": [
"lib",
"src",
"bin"
],
"keywords": [
"OPD",
"PPT",
"PowerPoint",
"Presentation",
"govuk"
],
"author": "DfE Digital <[email protected]> (https://education.gov.uk)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@types/jest": "^25.1.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jsdoc": "^3.6.3",
"lint-staged": "^10.0.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@prettier/plugin-xml": "^0.7.2",
"chalk": "^3.0.0",
"commander": "^5.0.0",
"debug": "^4.1.1",
"fast-xml-parser": "^3.16.0",
"jszip": "^3.2.2",
"prettier": "^1.19.1",
"shvl": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/DFE-Digital/presentation-merger.git"
},
"bugs": {
"url": "https://github.com/DFE-Digital/presentation-merger/issues"
},
"homepage": "https://github.com/DFE-Digital/presentation-merger#README"
}