-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
78 lines (78 loc) · 2 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
{
"name": "@shabados/database",
"version": "4.7.0",
"description": "The open gurbani database containing an evolving set of corrections. Used in Shabad OS software.",
"scripts": {
"import": "node lib/import.js",
"backport": "node lib/backport.js",
"benchmark": "node lib/benchmark.js",
"build-sqlite": "node lib/build-sqlite.js",
"build-mysql": "node lib/build-mysql.js",
"build-json": "node lib/build-json.js",
"generate-id": "node lib/generate-id.js",
"release": "./release.sh",
"test": "mocha test --exit",
"precommit": "lint-staged",
"serve-docs": "docsify serve docs -p 3001"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"gurbani",
"database",
"scripture",
"nitnem",
"gurmukhi",
"guru",
"shabad",
"sikh",
"kirtan",
"bani"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ShabadOS/database.git"
},
"author": "Shabad OS Team <team@shabados.com>",
"contributors": [
"GurbaniNow Team <contact@gurbaninow.com> (https://gurbaninow.com)"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ShabadOS/database/issues"
},
"homepage": "https://github.com/ShabadOS/database#readme",
"dependencies": {
"anyid": "^1.0.7",
"colors": "^1.4.0",
"commander": "^4.1.1",
"fast.js": "^0.1.1",
"freshy": "^1.0.4",
"gurmukhi-utils": "^3.1.0",
"is-ascii": "^1.0.0",
"knex": "^0.19.5",
"lodash": "^4.17.15",
"memoizee": "^0.4.14",
"objection": "^2.1.3",
"release-it": "^12.4.3",
"rimraf": "^3.0.2",
"snakecase-keys": "^3.1.0",
"sqlite3": "^4.1.1",
"string-similarity": "^3.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"docsify-cli": "^4.4.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"lint-staged": "^8.2.1",
"mocha": "^7.1.1"
}
}