-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "@web-std/file-url",
"version": "1.0.0",
"description": "File path to file URL builder",
"keywords": [
"file",
"url",
"file://",
"filesystem"
],
"type": "module",
"module": "./src/lib.js",
"main": "./src/lib.js",
"types": "./dist/src/lib.d.ts",
"exports": {
".": {
"import": "./src/lib.js"
}
},
"author": "Irakli Gozalishvili <[email protected]> (https://gozala.io)",
"repository": "https://github.com/web-std/file-url",
"license": "MIT",
"devDependencies": {
"git-validate": "2.2.4",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"playwright-test": "^5.0.0",
"prettier": "^2.3.0",
"rimraf": "3.0.2",
"typescript": "^4.3.5",
"uvu": "0.5.1"
},
"scripts": {
"check": "tsc --build",
"build": "tsc --build",
"prepare": "tsc --build",
"test:es": "uvu test all.spec.js",
"test:web": "playwright-test -r uvu test/all.spec.js",
"test": "npm run test:es && npm run test:web",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --no-semi --write",
"git add"
]
}
}