forked from supercharge/strings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.38 KB
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
55
56
{
"name": "@supercharge/strings",
"description": " String utilities for Node.js and JavaScript",
"version": "1.21.0",
"author": "Marcus Pöhls <marcus@superchargejs.com>",
"bugs": {
"url": "https://github.com/supercharge/strings/issues"
},
"dependencies": {
"uuid": "~8.3.2"
},
"devDependencies": {
"@supercharge/tsconfig": "~3.1.0",
"@types/jest": "~27.0.1",
"@types/uuid": "~8.3.1",
"@typescript-eslint/eslint-plugin": "~4.31.0",
"eslint": "~7.32.0",
"eslint-config-standard": "~16.0.3",
"eslint-config-standard-with-typescript": "~21.0.1",
"eslint-plugin-import": "~2.24.2",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~5.1.0",
"jest": "~27.1.0",
"typescript": "~4.4.2"
},
"files": [
"dist"
],
"homepage": "https://github.com/supercharge/strings",
"keywords": [
"supercharge",
"superchargejs",
"string",
"strings",
"utilities",
"nodejs"
],
"license": "MIT",
"main": "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": "jest"
},
"types": "dist"
}