-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.58 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
{
"name": "anvaad-js",
"version": "1.5.0",
"description": "Utilities to prime Gurmukhi script for search. Unicode, first letters, main letters, transliteration.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"lodash.unescape": "^4.0.1",
"string.prototype.padstart": "^3.1.6"
},
"devDependencies": {
"@babel/preset-env": "^7.25.3",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.3",
"babel-preset-env": "^1.7.0",
"eslint": "^8.48.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"test": "jest && yarn lint",
"lint": "eslint .",
"coverage": "jest --coverage",
"build": "webpack --mode production && cp src/index.d.ts dist/index.d.ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khalisfoundation/anvaad-js.git"
},
"keywords": [
"gurmukhi",
"gurbani",
"unicode"
],
"author": "Khalis, Inc. <techsupport@khalisfoundation.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/khalisfoundation/anvaad-js/issues"
},
"homepage": "https://github.com/khalisfoundation/anvaad-js#readme",
"babel": {
"presets": [
[
"@babel/preset-env"
]
]
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"jest": true,
"node": true
}
},
"jest": {
"testEnvironmentOptions": {
"url": "http://localhost"
}
}
}