-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.06 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": "boundary",
"version": "2.0.0",
"description": "Provides boundary functions, (upper-bound and lower-bound).",
"keywords": [
"algorithm"
],
"homepage": "https://github.com/textlint/boundary",
"bugs": {
"url": "https://github.com/textlint/boundary/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint/boundary.git"
},
"license": "BSD-2-Clause",
"author": "Yusuke SUZUKI",
"maintainers": [
{
"name": "Yusuke SUZUKI",
"email": "[email protected]",
"web": "http://github.com/Constellation"
}
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc -p .",
"prepublishOnly": "npm run build",
"test": "mocha \"test/**/*.{js,ts}\"",
"watch": "tsc -p . --watch"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^4.9.4"
},
"packageManager": "[email protected]"
}