-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.28 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "proskomma-core",
"version": "0.10.14",
"description": "A Scripture Runtime Engine",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/module.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "rm -fr dist && vite build",
"test": "rm -fr dist && vite build && export PKSRC=dist && bash -c \"tape -r @babel/register test/code/**/*.cjs | node_modules/tap-summary/bin/cmd.js\"",
"win:test": "rm -fr dist && vite build && set PKSRC=dist&& bash -c \"tape -r @babel/register test/code/**/*.cjs | node_modules/tap-summary/bin/cmd.js\"",
"rawTest": "rm -fr dist && vite build && export PKSRC=dist && bash -c \"tape -r @babel/register test/code/**/*.cjs\"",
"oneTest": "rm -fr dist && vite build && export PKSRC=dist && bash -c \"tape -r @babel/register test/code/$TESTSCRIPT.cjs\"",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Proskomma/proskomma-core.git"
},
"keywords": [
"USFM",
"USX",
"Scripture",
"parser",
"lexer",
"Proskomma"
],
"author": "Mark Howe",
"license": "MIT",
"bugs": {
"url": "https://github.com/Proskomma/proskomma-core/issues"
},
"homepage": "https://github.com/Proskomma/proskomma-core#readme",
"dependencies": {
"@babel/preset-env": "^7.20.2",
"@graphql-tools/schema": "^9.0.3",
"async-mutex": "^0.4.0",
"base-64": "^1.0.0",
"base64-js": "^1.5.1",
"bitset": "^5.1.1",
"buffer": "^6.0.3",
"deep-copy-all": "^1.3.4",
"deep-equal": "^2.0.5",
"easy-crc32": "^0.0.2",
"fs-extra": "^11.1.0",
"graphql": "^v16.6.0",
"proskomma-json-tools": "^0.6.5",
"pure-uuid": "^1.6.2",
"sax": "^1.2.4",
"stream": "0.0.2",
"string_decoder": "^1.3.0",
"utf8-string-bytes": "^1.0.3",
"util": "^0.12.4",
"xregexp": "^5.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/register": "^7.18.9",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"events": "^3.3.0",
"parcel": "^2.12.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"tap-summary": "^4.0.0",
"tape": "^5.7.5",
"typescript": "^4.9.5",
"vite": "^4.1.4"
}
}