-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.5 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.5 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
57
58
59
60
61
62
63
64
{
"name": "stringable-laravel",
"version": "1.4.6",
"description": "Javascript Version's of Laravel's Illuminate\\Support\\Str",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"src",
"dist/*.js",
"dist/types/*.js",
"types/*.d.ts"
],
"keywords": [
"string",
"strings",
"string-package",
"javascript strings",
"fluent strings",
"str",
"stringable",
"js",
"js stringable",
"laravel",
"laravel strings",
"laravel js",
"laraveljs",
"helper",
"util"
],
"scripts": {
"build": "tsc -b",
"test": "jest"
},
"author": "Borys Żmuda <rudashi@gmail.com>",
"license": "ISC",
"homepage": "https://github.com/rudashi/stringable#readme",
"dependencies": {
"typescript": "^4.9.5",
"marked": "^4.2.12",
"ulid": "^2.3.0"
},
"devDependencies": {
"@types/marked": "^4.0.8",
"@types/jest": "29.4.0",
"@types/node": "ts4.9",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"ts-loader": "^9.4.2",
"ts-jest": "29.0.5"
},
"browser": {
"crypto": false
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rudashi/stringable.git"
},
"bugs": {
"url": "https://github.com/rudashi/stringable/issues"
}
}