-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1 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
{
"name": "quote-parser",
"version": "1.0.2",
"description": "A node.js module for extracting quotes from text",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"module": "./dist/esm/index.js",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"test": "mocha -R spec test/**/*.js",
"lint": "eslint .",
"clean": "rm -rf dist/*",
"prepare": "yarn build",
"prepublishOnly": "yarn test"
},
"repository": {
"type": "git",
"url": "https://github.com/mitica/quote-parser-js.git"
},
"keywords": [
"quote",
"parser",
"extractor",
"text",
"quotes"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/mitica/quote-parser-js/issues"
},
"homepage": "https://github.com/mitica/quote-parser-js",
"devDependencies": {
"mocha": "^11.7.2",
"typescript": "^5.9.2"
}
}