-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 1.86 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
65
66
67
68
69
70
71
72
73
74
{
"name": "upad-parse",
"version": "7.5.2",
"description": "This is a parser for the NPX file format that µPad uses",
"main": "dist/index.js",
"scripts": {
"build": "yarn clean && tsc -p tsconfig.json && yarn build:browser",
"build:browser": "cp -r node_modules/timers-browserify node_modules/timers && esbuild src/index.ts --bundle --minify --sourcemap --global-name='NPXParser' --target=chrome86,firefox84,safari12 --outfile=dist/upad-parse.browser.js",
"clean": "rm -rf ./dist && rm -rf node_modules/timers",
"test": "TZ=NZ jest",
"docs": "rm -rf ./dist; npx typedoc --out docs/ --excludePrivate src/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/MicroPad/Web-Parser.git"
},
"author": "Nick Webster",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/MicroPad/Web-Parser/issues"
},
"homepage": "https://getmicropad.com",
"keywords": [
"uPad",
"µPad",
"parse",
"npx",
"parser"
],
"jest": {
"rootDir": "./src",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "((\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testURL": "http://localhost",
"setupFilesAfterEnv": [
"./tests/TestSetup.ts"
]
},
"dependencies": {
"aes-js": "^3.1.2",
"buffer": "^6.0.3",
"date-fns": "^2.21.3",
"events": "^3.3.0",
"json-stringify-safe": "^5.0.1",
"lz-string": "^1.4.4",
"scrypt-js": "^3.0.0",
"string_decoder": "^1.3.0",
"timers-browserify": "^2.0.12",
"turndown": "^7.0.0",
"turndown-plugin-gfm": "^1.0.2",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/json-stringify-safe": "^5.0.0",
"@types/lz-string": "^1.3.33",
"@types/xml2js": "^0.4.4",
"esbuild": "~0.14.11",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"typedoc": "^0.20.0",
"typescript": "~4.2"
}
}