-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.75 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
62
63
64
{
"author": "John Van Derton",
"name": "flysh",
"description": "DOM Document Object Artifact Collector",
"license": "MIT",
"version": "1.1.6",
"main": "./dist/cjs/index.js",
"modules": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"directories": {
"test": "test"
},
"bugs": {
"url": "https://github.com/johnvanderton/flysh/issues"
},
"files": [
"dist",
"version"
],
"scripts": {
"deploy (all)": "rimraf dist/ && tsc -b tsconfig.json tsconfig.esm.json tsconfig.types.json && node dist/cjs/example/index.js",
"build": "tsc -b tsconfig.json tsconfig.esm.json tsconfig.types.json",
"build doc": "npx typedoc --internalModule model --plugin typedoc-plugin-missing-exports --out docs ./src",
"clean": "rimraf dist/",
"test [windows]": "mocha -r ts-node/register test/**/*.test.ts",
"test [*nix]": "mocha -r ts-node/register test/**/*.test.ts test/**/**/*.test.ts test/src/**/*.test.ts",
"run": "node dist/cjs/example/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/johnvanderton/flysh.git"
},
"dependencies": {
"@types/node": "^20.1.2",
"jquery": "^3.7.1",
"jsdom": "^24.0.0",
"properties-reader": "^2.2.0",
"tslog": "^4.7.1",
"typedjson": "^1.7.0"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^10.0.4",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.2",
"mocha": "^10.0.0",
"rimraf": "^5.0.0",
"ts-node": "^10.5.0",
"typedoc": "^0.25.13",
"typedoc-plugin-missing-exports": "^2.0.0",
"typescript": "^5.4.5"
},
"keywords": [
"crawler",
"crawler-engine",
"DOM",
"HTML",
"jquery",
"parser",
"parser-library",
"typescript",
"typescript-library"
]
}