-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.71 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.71 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@ijusplab/text-parser",
"version": "0.0.1",
"description": "Configurable Javascript text parser using Regex.",
"main": "dist/index.cjs.js",
"main:prod": "dist/index.cjs.min.js",
"umd": "dist/index.umd.js",
"browser": "dist/index.umd.min.js",
"unpkg": "dist/index.umd.min.js",
"module": "dist/index.esm.js",
"module:prod": "dist/index.esm.min.js",
"types": "types/index.d.ts",
"files": [
"dist",
"bin"
],
"bin": {
"run-tester": "./bin/tester.js"
},
"scripts": {
"doc": "typedoc --plugin typedoc-plugin-extras --favicon src/tester/favicon.png src/index.ts",
"build": "rollup -c",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:manual": "ts-node --project ./tsconfig.node.json ./test/_manual.testing.ts",
"prepublishOnly": "npm run test && npm run build",
"serve:tester": "vite",
"build:tester": "vite build --emptyOutDir"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ijusplab/text-parser.git"
},
"author": {
"name": "Caio Moysés de Lima"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ijusplab/text-parser/issues",
"email": "caio.moyses.lima@gmail.com"
},
"homepage": "https://github.com/ijusplab/text-parser#readme",
"dependencies": {
"@ijusplab/helpers": "./node_modules/@ijusplab/helpers"
},
"devDependencies": {
"@bundled-es-modules/pdfjs-dist": "^2.5.207-rc1",
"@rollup/plugin-node-resolve": "^11.1.0",
"@types/jest": "^26.0.19",
"@types/prettier": "^2.1.6",
"@types/tabulator-tables": "^4.9.1",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"@vitejs/plugin-vue": "^1.1.0",
"@vue/compiler-sfc": "^3.0.5",
"@vuedx/typecheck": "^0.6.0",
"@vuedx/typescript-plugin-vue": "^0.6.0",
"autoprefixer": "^10.2.3",
"canvas-datagrid": "^0.3.3",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-prettier-vue": "^2.1.1",
"eslint-plugin-vue": "^7.4.1",
"jest": "^26.6.3",
"postcss": "^8.2.4",
"prettier": "^2.2.1",
"rollup": "^2.35.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"tabulator-tables": "^4.9.3",
"tailwindcss": "^2.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typedoc": "^0.20.14",
"typedoc-plugin-extras": "^1.1.7",
"typescript": "^4.1.3",
"vite": "^2.0.0-beta.36",
"vue": "^3.0.5",
"vue-eslint-parser": "^7.4.1"
}
}