-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 890 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 890 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
36
37
38
39
{
"name": "@spec-box/text-parser",
"version": "0.2.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spec-box/text-parser.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/spec-box/text-parser/issues"
},
"homepage": "https://github.com/spec-box/text-parser#readme",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"./lib"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prebuild": "rm -rf lib",
"prepublishOnly": "npm run build",
"test": "jest"
},
"dependencies": {
"url-regex-safe": "4.0.0"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/url-regex-safe": "1.0.2",
"jest": "29.7.0",
"prettier": "3.2.5",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}