-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1 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
{
"name": "@leismore/insert_separator",
"version": "1.0.2",
"description": "A JavaScript function that converts a string into a series of fixed-length string chunks divided by a given separator.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "mocha ./test/test.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leismore/insert_separator-function.git"
},
"keywords": [
"String",
"Fixed-Length",
"Separator"
],
"author": "Kyle Chine",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/leismore/insert_separator-function/issues"
},
"homepage": "https://github.com/leismore/insert_separator-function#readme",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "~16.11.26",
"chai": "^4.3.6",
"mocha": "^9.2.1",
"ts-node": "^10.6.0",
"typescript": "~4.5.5"
},
"dependencies": {
"@leismore/lmerror": "^6.0.3"
}
}