-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "esbuild-plugin-wasm-pack",
"version": "1.1.0",
"description": "An esbuild plugin that runs wasm-pack.",
"keywords": [
"wasm",
"wasm-pack",
"webassembly",
"esbuild",
"plugin",
"esbuild-plugin"
],
"homepage": "https://github.com/Tschrock/esbuild-plugin-wasm-pack#readme",
"bugs": "https://github.com/Tschrock/esbuild-plugin-wasm-pack/issues",
"license": "MIT",
"author": "Tyler Schrock <[email protected]>",
"funding": {
"type": "individual",
"url": "https://ko-fi.com/tschrock"
},
"main": "dist/index.js",
"repository": "github:Tschrock/esbuild-plugin-wasm-pack",
"scripts": {
"test": "gulp test",
"clean": "gulp clean",
"bundle": "gulp bundle",
"types": "gulp types",
"build": "gulp build",
"lint": "gulp lint",
"prepare": "gulp prepare",
"prepublishOnly": "gulp prepublishOnly"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/eslint": "^7.2.13",
"@types/gulp": "^4.0.8",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"chai": "^4.3.4",
"del": "^6.0.0",
"esbuild": "^0.12.9",
"eslint": "^7.28.0",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"mocha": "^9.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"engines": {
"node": ">=0.12.0"
}
}