-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.99 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
{
"name": "scripture-burrito-store",
"version": "0.0.0",
"description": "A Javascript implementation of the Scripture Burrito processing model. ",
"repository": {
"type": "git",
"url": "https://github.com/bible-technology/scripture-burrito-store-js.git"
},
"license": "Apache-2.0",
"main": "code/burrito_store.js",
"scripts": {
"start": "node express/bin/www",
"express": "node express/bin/www",
"test": "mocha test/test_all.js",
"testAll": "mocha test/test_all.js",
"testSmoke": "mocha test/test_smoke.js",
"testSchema": "mocha test/test_schema.js",
"testDbl": "mocha test/test_dbl_import.js",
"testBundleImport": "mocha test/test_bundle_import.js",
"testDblOab": "mocha test/test_dbl_oab_import.js",
"testSB01": "mocha test/test_sb01_import.js"
},
"dependencies": {
"adm-zip": "^0.4.14",
"ajv": "^6.10.2",
"babel-core": "^6.26.3",
"chai": "^4.2.0",
"cookie-parser": "^1.4.5",
"crypto-js": "^4.0.0",
"deep-equal": "^2.0.1",
"deepcopy": "^2.0.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-fileupload": "^1.1.7-alpha.3",
"fs": "0.0.1-security",
"fs-extra": "^8.1.0",
"hbs": "^4.1.1",
"http-error": "0.0.6",
"http-errors": "^1.7.3",
"md5-file": "^4.0.0",
"morgan": "^1.10.0",
"optimist": "^0.6.1",
"readdirp": "^3.4.0",
"semver": "^6.3.0",
"sha3": "^2.1.1",
"uuid": "^7.0.3",
"xmldom": "^0.3.0"
},
"devDependencies": {
"debug": "^4.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha": "^6.3.0",
"eslint-formatter-pretty": "^3.0.1",
"prettier": "^1.19.1",
"pretty-format": "^25.3.0",
"tape": "^4.13.2",
"mocha": "^7.1.1"
},
"eslintConfig": {
"plugins": [
"mocha"
],
"extends": [
"plugin:mocha/recommended"
],
"rules": {
"mocha/no-mocha-arrows": "warn",
"no-undef": "off",
"func-names": "off"
}
}
}