forked from Proskomma/proskomma-json-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.56 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
{
"name": "proskomma-json-tools",
"version": "0.8.21",
"description": "Tools for working with Proskomma-derived formats such as PERF and SOFRIA",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build && bash -c \"tape -r @babel/register test/code/*.cjs | node_modules/tap-summary/bin/cmd.js\"",
"rawTest": "tape -r @babel/register test/code/*.cjs",
"oneTest": "npm run build && bash -c \"tape -r @babel/register test/code/$TESTSCRIPT.cjs\"",
"build": "rm -fr dist && babel src -d dist && cp -fr src/schema/ dist/ && cp -fr src/render/pipelines/*.json dist/render/pipelines/",
"prepublishOnly": "rm -fr dist && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Proskomma/proskomma-json-tools.git"
},
"author": "Mark Howe",
"license": "MIT",
"bugs": {
"url": "https://github.com/Proskomma/proskomma-json-tools/issues"
},
"homepage": "https://github.com/Proskomma/proskomma-json-tools#readme",
"dependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-throw-expressions": "^7.22.5",
"ajv": "^8.12.0",
"cheerio": "^1.0.0-rc.12",
"deep-equal": "^2.2.2",
"usfm-js": "^3.4.2",
"xregexp": "^5.1.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.23.2",
"@babel/register": "^7.22.15",
"eslint": "^8.52.0",
"fs-extra": "^11.1.1",
"path": "^0.12.7",
"proskomma-core": "^0.10.10",
"tap-summary": "^4.0.0",
"tape": "^5.7.2"
}
}