-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
{
"name": "proskomma-utils",
"version": "0.8.2",
"description": "Schema and Other Utilities for Proskomma",
"main": "dist/index.js",
"scripts": {
"test": "tape -r @babel/register test/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 | node_modules/tap-nyc/bin/cmd.js",
"build": "babel src -d dist --copy-files",
"prepublishOnly": "rm -fr dist && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mvahowe/proskomma-utils.git"
},
"author": "Mark Howe",
"license": "MIT",
"bugs": {
"url": "https://github.com/mvahowe/proskomma-utils/issues"
},
"homepage": "https://github.com/mvahowe/proskomma-utils#readme",
"dependencies": {
"@babel/core": "^7.19.0",
"base64-js": "^1.5.1",
"btoa": "^1.2.1",
"deep-equal": "^2.0.5",
"jsonschema": "^1.4.1",
"path": "^0.12.7",
"pure-uuid": "^1.6.2",
"utf8-string-bytes": "^1.0.3",
"xregexp": "^5.1.1"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-env": "^7.19.0",
"@babel/register": "^7.18.9",
"eslint": "^8.23.0",
"eslint-plugin-import": "^2.26.0",
"fs-extra": "^10.1.0",
"nyc": "^15.1.0",
"tap-nyc": "^1.0.3",
"tap-summary": "^4.0.0",
"tape": "^5.0.1"
}
}