-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
79 lines (79 loc) · 1.94 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
{
"name": "@submitty/pdf-annotate.js",
"version": "24.6.6",
"description": "Annotation layer for pdf.js",
"main": "index.js",
"types": "types",
"scripts": {
"test": "karma start --single-run",
"start": "./scripts/web",
"lint": "./node_modules/.bin/eslint .",
"startindocker": "./scripts/web-docker",
"build": "webpack && MINIFY=1 webpack",
"codecov": "codecov",
"types": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Submitty/pdf-annotate.js.git"
},
"keywords": [
"pdf",
"annotation"
],
"author": "Matt Zabriskie",
"contributors": [
{
"name": "Victor Nazzaro"
},
{
"name": "Matthew Peveler",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Submitty/pdf-annotate.js/issues"
},
"homepage": "https://github.com/Submitty/pdf-annotate.js#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"eslint": "^7.19.0",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^6.1.1",
"karma-chrome-launcher": "^3.0.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-firefox-launcher": "^2.1.1",
"karma-mocha": "^2.0.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^10.4.0",
"pdfjs-dist": "4.3.136",
"sinon": "^18.0.0",
"sinon-chai": "^3.3.0",
"terser-webpack-plugin": "^4.2.3",
"typescript": "^4.5.5",
"webpack": "^4.34.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.15.0"
},
"peerDependencies": {
"pdfjs-dist": "^4.2.67"
},
"files": [
"dist",
"src",
"index.js",
"types",
"LICENSE.md",
"README.md",
"webpack.config.js"
]
}