-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 988 Bytes
/
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
{
"name": "@jayay/pcre2-web",
"version": "0.5.0",
"repository": "git://github.com/jayay/pcre2-web.git",
"description": "libpcre2 brought to the web using WASM.",
"main": "pkg/loader.js",
"scripts": {
"compile": "scripts/pcre2_compile.sh",
"build": "npx tsc -b -v",
"test": "node --experimental-wasm-modules node_modules/mocha/bin/_mocha",
"release": "node scripts/release.js"
},
"keywords": [
"libpcre2",
"pcre",
"regex",
"wasm"
],
"devDependencies": {
"@types/mocha": "latest",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"mocha": "latest",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"author": "Jakob Jungmann",
"license": "BSD-3-Clause",
"dependencies": {
"path": "^0.12.7"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"sideEffects": false,
"type": "module"
}