forked from mvahowe/proskomma-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
{
"name": "proskomma",
"version": "0.7.15",
"description": "A Scripture Runtime Engine",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"test": "bash -c \"babel-tape-runner test/code/*.cjs | node_modules/tap-summary/bin/cmd.js\"",
"rawTest": "babel-tape-runner test/code/*.cjs",
"oneTest": "babel-tape-runner test/code/$TESTSCRIPT.cjs",
"coverage": "node_modules/nyc/bin/nyc.js babel-tape-runner test/code/*.cjs",
"build": "rm -fr dist && webpack --mode production --config webpack.prod.js",
"prepublishOnly": "rm -fr dist && npm run build",
"serialize": "babel-tape-runner test/code/serialize.js"
},
"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.12.9",
"async-mutex": "^0.2.6",
"base64-js": "^1.3.1",
"bitset": "^5.1.1",
"checksum": "^1.0.0",
"deep-copy-all": "^1.3.4",
"deep-equal": "^2.0.5",
"graphql": "^15.3.0",
"graphql-tools": "^8.2.7",
"jsonschema": "^1.4.0",
"proskomma-json-tools": "^0.5.6",
"proskomma-utils": "^0.8.2",
"sax": "^1.2.4",
"utf8-string-bytes": "^1.0.3",
"uuid-base64": "^1.0.0",
"xregexp": "^4.4.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/preset-env": "^7.12.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-tape-runner": "^3.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-jsdoc": "^36.1.0",
"fs-extra": "^9.0.1",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"tap-summary": "^4.0.0",
"tape": "^5.0.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.9"
}
}