forked from KhalisFoundation/anvaad-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.44 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
{
"name": "anvaad-js",
"version": "1.4.3",
"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.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^22.3.0",
"npm-run-all": "^4.1.2",
"webpack": "^3.10.0"
},
"scripts": {
"test": "jest && yarn lint",
"lint": "eslint .",
"coverage": "jest --coverage",
"build": "webpack -p && mv 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. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/khalisfoundation/anvaad-js/issues"
},
"homepage": "https://github.com/khalisfoundation/anvaad-js#readme",
"babel": {
"presets": [
"env"
]
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"jest": true,
"node": true
}
},
"jest": {
"testURL": "http://localhost"
}
}