-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 848 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
{
"name": "strind",
"version": "0.3.1",
"license": "MIT",
"description": "Partition strings based on character indices",
"author": "Eric Liu (https://github.com/metonym)",
"main": "./lib/strind.js",
"types": "./lib/strind.d.ts",
"scripts": {
"test": "tsnd src/*.test.ts",
"test:tdd": "tsnd --respawn src/*.test.ts",
"prepack": "tsc"
},
"devDependencies": {
"@types/node": "^14.0.23",
"ts-node-dev": "^1.0.0-pre.52",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "https://github.com/metonym/strind.git"
},
"homepage": "https://github.com/metonym/strind",
"bugs": "https://github.com/metonym/strind/issues",
"keywords": [
"string",
"string manipulation",
"partition",
"char",
"index",
"indices",
"utility"
],
"files": [
"lib"
]
}