forked from dom111/webdav-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.01 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
{
"name": "webdav-js",
"version": "2.4.0",
"description": "WebDAV functionality intended for use as a bookmarklet or to make a simple webserver an interactive WebDAV environment.",
"repository": {
"type": "git",
"url": "git@github.com:dom111/webdav-js.git"
},
"keywords": [
"webdav",
"bookmarklet"
],
"author": "Dom Hastings",
"license": "MIT",
"scripts": {
"build": "npm run build:esbuild && npm run build:prettier:write && npm run build:examples",
"build:esbuild": "node ./esbuild.js",
"build:esbuild:watch": "node ./esbuild.js watch",
"build:examples": "bash build/examples.sh",
"build:examples:branch": "bash build/examples-branch.sh",
"build:prettier:check": "prettier -c .",
"build:prettier:write": "prettier -w .",
"build:watch": "npm run build:esbuild:watch",
"terser": "terser",
"test": "npm run test:unit && npm run test:functional",
"test:functional": "npm run test:functional:chrome && npm run test:functional:firefox",
"test:functional:chrome": "jest -c jest.config.functional.chrome.ts",
"test:functional:firefox": "jest -c jest.config.functional.firefox.ts",
"test:unit": "jest -c jest.config.unit.ts",
"watch": "npm run build:watch"
},
"devDependencies": {
"@types/basiclightbox": "^5.0.1",
"@types/expect-puppeteer": "^4.4.7",
"@types/jest": "^27.4.1",
"@types/jest-environment-puppeteer": "^5.0.1",
"@types/prismjs": "^1.26.0",
"@types/puppeteer": "^5.4.6",
"@xmldom/xmldom": "^0.8.2",
"esbuild": "^0.14.38",
"esbuild-plugin-copy": "^1.3.0",
"esbuild-sass-plugin": "^2.2.6",
"jest": "^27.5.1",
"jest-puppeteer": "^6.1.0",
"prettier": "^2.6.2",
"terser": "^4.3",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0"
},
"dependencies": {
"@dom111/element": "^0.1.0",
"@dom111/typed-event-emitter": "^0.1.0",
"basiclightbox": "^5.0.2",
"i18next": "^21.9.1",
"i18next-browser-languagedetector": "^6.1.5",
"melba-toast": "^3.0.0",
"prismjs": "^1.17.1"
}
}