-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "idrviewer",
"version": "1.21.9",
"description": "The IDRViewer is a viewer designed for documents converted using BuildVu",
"keywords": [
"idrsolutions",
"buildvu",
"idrviewer",
"viewer",
"pdf",
"document",
"html",
"html5",
"svg",
"javascript"
],
"homepage": "https://github.com/idrsolutions/idrviewer",
"bugs": {
"url": "https://github.com/idrsolutions/idrviewer/issues"
},
"license": "Apache-2.0",
"author": "Leon Atherton <leon@idrsolutions.com>",
"main": "src/js/idrviewer.js",
"repository": {
"type": "git",
"url": "https://github.com/idrsolutions/idrviewer.git"
},
"scripts": {
"jshint": "jshint src/js",
"setupPlaywright": "node scripts/test-setup.js && npx playwright install",
"startTestServer": "http-server target/test -p 3000",
"clean": "node scripts/test-clean.js",
"testPlaywright": "npx playwright test",
"playwright": "npm run clean && npm run setupPlaywright && npm run testPlaywright",
"test": "npm run jshint && npm run webpack && npm run playwright",
"webpack": "npx webpack",
"webpack-watch": "npx webpack --watch"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"html-inline-script-webpack-plugin": "^3.2.1",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"http-server": "^14.1.1",
"jshint": "^2.13.6",
"playwright": "^1.49.1",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
}
}