-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 KB
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
{
"name": "@uscreen.de/common-esm",
"type": "module",
"version": "1.1.1",
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264",
"description": "make ESM a bit more commonJS",
"author": "Marcus Spiegel <spiegel@uscreen.de>",
"license": "MIT",
"homepage": "https://github.com/uscreen/common-esm#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/uscreen/common-esm.git"
},
"bugs": {
"url": "https://github.com/uscreen/common-esm/issues"
},
"keywords": [
"esm",
"commonJS",
"require",
"package.json",
"import",
"import.meta",
"import.meta.url",
"dirname",
"__dirname",
"filename",
"__filename"
],
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts"
],
"scripts": {
"test": "c8 node --test",
"test:cov": "c8 --reporter=html --reporter=text node --test",
"test:ci": "c8 --reporter=lcovonly node --test",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"desm": "^1.3.1"
},
"devDependencies": {
"@antfu/eslint-config": "^7.6.1",
"c8": "^11.0.0",
"eslint": "^10.0.3",
"eslint-plugin-format": "^2.0.1"
}
}