-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "@trosckey/scraper-utils",
"version": "0.5.1",
"description": "helpful tools for process text",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"type": "module",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "rm -fr dist/* && tsc -p tsconfig-mjs.json && tsc -p tsconfig-cjs.json && ./fixup && node fix-mjs-paths.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trosck/scraper-utils.git"
},
"keywords": [
"process",
"text",
"scraping"
],
"author": "trosckey",
"license": "MIT",
"bugs": {
"url": "https://github.com/trosck/scraper-utils/issues"
},
"homepage": "https://github.com/trosck/scraper-utils#readme",
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.0.0",
"filehound": "^1.17.6",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
}
}