-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 853 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 853 Bytes
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
{
"name": "rich-string-parser",
"version": "3.1.3",
"description": "rich string parser",
"keywords": [
"richtext",
"richstring",
"string",
"parser"
],
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc",
"test": "tsc & jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/richie-south/javascript-rich-string-parser.git"
},
"author": "richard söderman",
"license": "ISC",
"bugs": {
"url": "https://github.com/richie-south/javascript-rich-string-parser/issues"
},
"homepage": "https://github.com/richie-south/javascript-rich-string-parser#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.3.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}