forked from zirkler/tresor-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.77 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": "@tresor.one/import",
"version": "2.6.0",
"description": "Creates Tresor One activities from PDF statements of brokers",
"files": [
"dist"
],
"main": "dist/tresor-import.js",
"scripts": {
"build": "./node_modules/.bin/webpack --config=webpack.build.js",
"watch": "npm run dev",
"dev": "./node_modules/.bin/webpack --config=webpack.dev.js",
"demo": "serve demo",
"prepare": "npm run build",
"start": "concurrently --kill-others \"npm run demo\" \"npm run dev\"",
"test": "jest --verbose",
"lint": "eslint .",
"precommit": "pretty-quick --staged --no-restage && npm run lint && npm t"
},
"keywords": [
"tresor",
"one",
"pdf",
"import"
],
"author": "Sumit Kumar",
"license": "MIT",
"dependencies": {
"big.js": "^5.2.2",
"lodash": "^4.17.19",
"luxon": "^1.25.0",
"pdfjs-dist": "^2.3.200"
},
"devDependencies": {
"@babel/preset-env": "^7.9.5",
"babel-jest": "^25.4.0",
"babel-loader": "^8.1.0",
"before-build-webpack": "^0.2.9",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "^6.0.4",
"date-fns": "^2.16.1",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^6.0.0",
"glob": "^7.1.6",
"husky": "^4.2.5",
"jest": "^25.4.0",
"jest-cli": "^25.4.0",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1",
"serve": "^11.3.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"husky": {
"hooks": {
"pre-commit": ""
}
},
"jest": {
"modulePaths": [
"<rootDir>"
],
"moduleDirectories": [
"node_modules",
"<rootDir>"
],
"moduleNameMapper": {
"@/(.*)$": "<rootDir>/src/$1"
}
}
}