-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.53 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
55
56
57
58
59
60
61
{
"name": "solid-links",
"version": "0.3.4",
"types": "dist/types/index.d.ts",
"main": "dist/cjs/production/production/index.jsx",
"module": "dist/esm/production/production/index.jsx",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"license": "MIT",
"description": "Transform URLs in strings to actual links.",
"repository": {
"url": "https://github.com/git-ced/solid-links.git",
"type": "git"
},
"homepage": "https://solid-links.netlify.app/",
"bugs": {
"url": "https://github.com/git-ced/solid-links/issues"
},
"publishConfig": {
"access": "public"
},
"author": "Prince Neil Cedrick Castro",
"private": false,
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
}
},
"keywords": [
"solidjs",
"linkify"
],
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"eslint": "^7.32.0",
"eslint-config-lxsmnsyc": "^0.2.3",
"identity-obj-proxy": "^3.0.0",
"pridepack": "^0.12.2",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"scripts": {
"prepublish": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"test": "pridepack test --passWithNoTests",
"clean": "pridepack clean",
"watch": "pridepack watch"
},
"dependencies": {
"solid-js": "^1.3.7"
}
}