forked from shabados/gurmukhi-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"name": "gurmukhi-utils",
"version": "3.2.2",
"description": "General functions for working with lines of Gurmukhi.",
"main": "dist/index.min.js",
"unpkg": "dist/index.min.js",
"types": "index.d.ts",
"runkitExampleFilename": "example.js",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run build-docs && git add docs/ README.md"
}
},
"scripts": {
"test": "jest --coverage",
"release": "./release.sh",
"build": "webpack --mode production",
"build-docs": "jsdoc2md --template README.hbs lib/**/*.js > README.md && markdown-toc -i README.md && cp README.md docs/",
"lint": "eslint .",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShabadOS/gurmukhi-utils.git"
},
"author": "ShabadOS Team <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ShabadOS/gurmukhi-utils/issues"
},
"homepage": "https://github.com/ShabadOS/gurmukhi-utils#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"coveralls": "^3.0.9",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^4.2.3",
"jest": "^26.6.0",
"jsdoc-to-markdown": "^5.0.3",
"markdown-toc": "^1.2.0",
"mocha-lcov-reporter": "^1.3.0",
"prettier": "2.1.2",
"release-it": "^13.1.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"keywords": [
"gurmukhi",
"gurbani",
"sikhi",
"transliteration",
"transliterate",
"ascii",
"unicode",
"gurbaniAkhar",
"converter"
],
"dependencies": {
"escape-string-regexp": "^2.0.0"
}
}