-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
85 lines (85 loc) · 2.52 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
78
79
80
81
82
83
84
85
{
"name": "proskomma",
"version": "0.9.3",
"description": "A Scripture Runtime Engine",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"test": "bash -c \"tape -r @babel/register test/code/*.cjs | node_modules/tap-summary/bin/cmd.js\"",
"testUtils": "bash -c \"tape -r @babel/register test/code/utils/code/*.cjs | node_modules/tap-summary/bin/cmd.js\"",
"rawTest": "tape -r @babel/register test/code/*.cjs",
"oneTest": "tape -r @babel/register test/code/$TESTSCRIPT.cjs",
"coverage": "node_modules/nyc/bin/nyc.js tape -r @babel/register test/code/*.cjs",
"build": "rm -fr dist && webpack --mode production --config webpack.prod.js",
"prepublishOnly": "rm -fr dist && npm run build",
"serialize": "tape -r @babel/register test/code/serialize.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mvahowe/proskomma-js.git"
},
"keywords": [
"USFM",
"USX",
"Scripture",
"parser",
"lexer"
],
"author": "Mark Howe",
"license": "MIT",
"bugs": {
"url": "https://github.com/mvahowe/proskomma-js/issues"
},
"homepage": "https://github.com/mvahowe/proskomma-js#readme",
"dependencies": {
"@babel/core": "^7.19.0",
"@graphql-tools/schema": "^9.0.3",
"assert": "^2.0.0",
"async-mutex": "^0.4.0",
"babel-eslint": "^10.1.0",
"base64-js": "^1.5.1",
"bitset": "^5.1.1",
"checksum": "^1.0.0",
"constants-browserify": "^1.0.0",
"deep-copy-all": "^1.3.4",
"deep-equal": "^2.0.5",
"exceljs": "^4.3.0",
"graphql": "^v16.6.0",
"jsonschema": "^1.4.1",
"node-polyfill-webpack-plugin": "^2.0.1",
"path-browserify": "^1.0.1",
"pipeline-handler": "2.2.0",
"proskomma-json-tools": "0.6.4",
"sax": "^1.2.4",
"stream": "0.0.2",
"utf8-string-bytes": "^1.0.3",
"util": "^0.12.4",
"xregexp": "^5.1.1",
"pure-uuid": "^1.6.2",
"btoa": "^1.2.1"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-env": "^7.19.0",
"@babel/register": "^7.18.9",
"babel-loader": "^8.2.5",
"buffer": "^6.0.3",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-prettier": "^v4.2.1",
"fs-extra": "^10.1.0",
"path": "0.12.7",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"process": "^0.11.10",
"tap-summary": "^4.0.0",
"tape": "^5.6.0",
"webpack": "5.74.0",
"webpack-cli": "4.10.0"
}
}