forked from mysticatea/event-target-shim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.86 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.86 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
52
53
54
55
56
57
58
59
{
"name": "@gjsify/event-target",
"version": "0.0.1",
"description": "An implementation of WHATWG EventTarget interface for Gjs",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"files": [
"index.*",
"es5.*",
"umd.*"
],
"scripts": {
"clear": "rm -rf lib",
"print:name": "echo '@gjsify/event-target'",
"build": "yarn print:name && yarn build:gjsify && yarn build:types",
"build:gjsify": "gjsify build --library src/**/*.{ts,js}",
"build:types": "tsc --emitDeclarationOnly || exit 0",
"build:test": "yarn build:test:gjs && yarn build:test:node && yarn build:test:deno",
"build:test:gjs": "gjsify build src/test.mts --app gjs --outfile test.gjs.mjs",
"build:test:node": "gjsify build src/test.mts --app node --outfile test.node.mjs",
"build:test:deno": "gjsify build src/test.mts --app deno --outfile test.deno.mjs",
"test": "yarn print:name && yarn build && yarn build:test && yarn test:node && yarn test:deno && yarn test:gjs",
"test:gjs": "gjs -m test.gjs.mjs",
"test:node": "node test.node.mjs",
"test:deno": "deno run --unstable test.deno.mjs"
},
"devDependencies": {
"@gjsify/cli": "workspace:^",
"@gjsify/unit": "workspace:^",
"typescript": "^5.0.0-dev.20230105"
},
"repository": {
"type": "git",
"url": "https://github.com/mysticatea/event-target-shim.git"
},
"keywords": [
"w3c",
"whatwg",
"eventtarget",
"event",
"events",
"shim",
"gjs"
],
"author": "Toru Nagashima",
"license": "MIT",
"bugs": {
"url": "https://github.com/mysticatea/event-target-shim/issues"
},
"homepage": "https://github.com/mysticatea/event-target-shim",
"funding": "https://github.com/sponsors/mysticatea",
"sideEffects": false,
"unpkg": "umd.js",
"dependencies": {
"@gjsify/utils": "workspace:^"
}
}