-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "re2-wasm",
"version": "1.1.0",
"keywords": [
"regexp",
"re2",
"wasm"
],
"description": "Google's RE2 library distributed as a WASM module",
"homepage": "https://github.com/google/re2-wasm",
"bugs": "https://github.com/google/re2-wasm/issues",
"repository": "https://github.com/google/re2-wasm",
"main": "build/src/re2.js",
"scripts": {
"test": "node ./third_party/node-re2/tests/tests.js",
"lint": "gts lint src/*.ts",
"clean": "gts clean",
"compile": "make -j12 && tsc && cp -r wasm build/",
"fix": "gts fix src/*.ts",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^14.11.2",
"gts": "^3.1.0",
"heya-unit": "^0.3.0",
"typescript": "~4.1.3"
},
"engines": {
"node": ">=10"
},
"files": [
"src/*.ts",
"wasm/re2.d.ts",
"build/**/*.{d.ts,js,js.map,wasm}"
],
"types": "./build/src/re2.d.ts"
}