-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "onigasm",
"version": "2.2.5",
"description": "WebAssembly port of Oniguruma regex library",
"main": "lib/index.js",
"typings": "lib/typings/index.d.ts",
"scripts": {
"build::onig": "./scripts/build.sh",
"watch::onig": "onchange 'src/**/*.cc' -w -p 1000 -- npm run build::onig",
"build::tsc": "tsc",
"watch::tsc": "tsc -w",
"build": "concurrently \"npm run build::tsc\" \"npm run build::onig\"",
"watch": "concurrently \"npm run watch::tsc\" \"npm run watch::onig\"",
"clean": "git submodule foreach --recursive git clean -xfd && rimraf lib",
"test": "node test/index.js",
"benchmark": "node benchmark.js",
"preversion": "npm run setup-emsdk && npm run clean && npm run build && npm run test",
"setup-emsdk": "./scripts/setup-emsdk.sh 1.39.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NeekSandhu/onigasm.git"
},
"keywords": [
"oniguruma",
"onig",
"regex",
"wasm",
"asm",
"web",
"assembly"
],
"author": "Neek Sandhu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NeekSandhu/onigasm/issues"
},
"homepage": "https://github.com/NeekSandhu/onigasm#readme",
"devDependencies": {
"@types/lru-cache": "^5.1.0",
"concurrently": "^5.0.0",
"durations": "^3.4.1",
"jasmine-focused": "^1.0.7",
"onchange": "^6.1.0",
"rimraf": "^3.0.0",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"dependencies": {
"lru-cache": "^5.1.1"
}
}