-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "mudder",
"version": "2.1.1",
"description": "Find lexicographical points between strings",
"main": "dist/mudder.min.js",
"module": "dist/mudder.min.mjs",
"exports": {
".": {
"browser": "./dist/mudder.min.mjs",
"node": {
"import": "./dist/mudder.min.mjs",
"require": "./dist/mudder.cjs"
},
"import": "./dist/mudder.min.mjs"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"scripts": {
"pretest": "node tangle.js",
"test": "npm run pretest && tape 'test/**/*-test.js'",
"compile": "node esbuild.mjs",
"build": "npm run test && npm run compile"
},
"keywords": [
"string",
"mean",
"lexicographical",
"distance",
"number",
"radix",
"base"
],
"author": "Ahmed Fasih",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/fasiha/mudderjs.git"
},
"devDependencies": {
"@chialab/esbuild-plugin-commonjs": "^0.17.2",
"esbuild": "^0.16.17",
"tape": "^4.6.0"
}
}