-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.16 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
46
47
48
49
50
{
"name": "string-patternizer",
"version": "1.0.1",
"description": "Convert strings to match a pattern",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"test": "ts-mocha src/*.test.ts",
"coverage": "c8 pnpm test",
"lint": "eslint \"**/*.ts\""
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"string",
"pattern",
"format"
],
"author": "mustapelto",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"c8": "^7.12.0",
"chai": "^4.3.6",
"eslint": "^8.23.0",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.8.2"
},
"repository": {
"type": "git",
"url": "https://github.com/mustapelto/string-patternizer.git"
},
"bugs": {
"url": "https://github.com/mustapelto/string-patternizer/issues"
},
"homepage": "https://github.com/mustapelto/string-patternizer"
}