afpp 1.6.1 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "afpp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "another f*cking pdf parser",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -9,13 +9,14 @@
|
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "tsc -p tsconfig.build.json",
|
|
12
|
-
"postbuild": "tsc-alias -p tsconfig.build.json",
|
|
13
12
|
"commit": "git-cz",
|
|
14
13
|
"lint": "eslint .",
|
|
14
|
+
"postbuild": "tsc-alias -p tsconfig.build.json",
|
|
15
15
|
"prebuild": "rm -rf dist",
|
|
16
16
|
"prepare": "husky",
|
|
17
|
-
"test": "NODE_ENV=test npx tsx --test --test-reporter @voxpelli/node-test-pretty-reporter test/*.test.ts",
|
|
18
17
|
"pretest:coverage": "rm -rf coverage",
|
|
18
|
+
"test": "NODE_ENV=test npx tsx --test --test-reporter @voxpelli/node-test-pretty-reporter test/*.test.ts",
|
|
19
|
+
"test:single": "NODE_ENV=test npx tsx --test --test-reporter @voxpelli/node-test-pretty-reporter",
|
|
19
20
|
"test:coverage": "c8 --reporter=lcov npm test",
|
|
20
21
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
21
22
|
},
|