-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
54 lines (54 loc) · 1.32 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
51
52
53
54
{
"name": "@supercharge/strings",
"description": " String utilities for Node.js and JavaScript",
"version": "2.0.0",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/supercharge/strings/issues"
},
"dependencies": {
"uuid": "~9.0.0"
},
"devDependencies": {
"@supercharge/eslint-config-typescript": "~2.3.3",
"@supercharge/tsconfig": "~3.1.0",
"@types/uuid": "~9.0.0",
"@typescript-eslint/eslint-plugin": "~5.47.1",
"c8": "~7.12.0",
"eslint": "~8.30.0",
"expect": "~29.3.1",
"typescript": "~4.9.4",
"uvu": "~0.5.6"
},
"files": [
"dist"
],
"homepage": "https://github.com/supercharge/strings",
"keywords": [
"supercharge",
"superchargejs",
"string",
"strings",
"utilities",
"nodejs"
],
"license": "MIT",
"main": "dist",
"types": "dist",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/strings.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && npm run lint && npm run test:run",
"test:run": "c8 --include=dist uvu --ignore fixtures",
"posttest": "c8 report --reporter=html"
}
}