-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 964 Bytes
/
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
{
"name": "casefold",
"version": "1.2.10",
"description": "A string utility package for caseless comparison of strings",
"main": "bin/index.js",
"scripts": {
"build": "npm ci && tsc --pretty",
"test": "npm run build && mocha ./bin/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoBrad/casefold.git"
},
"keywords": [
"string",
"transform",
"caseless",
"casefold"
],
"author": "Joseph T. Bradley",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoBrad/casefold/issues"
},
"homepage": "https://github.com/JoBrad/casefold#readme",
"types": "./types/index.d.ts",
"dependencies": {
"debug": "^4.1.1",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/lodash": "^4.14.123",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"chai": "^4.3.6",
"mocha": "^9.2.1",
"typescript": "^4.2.3"
}
}