forked from costflow/parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.84 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.84 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
{
"name": "costflow",
"version": "1.0.4",
"description": "Costflow Parser",
"main": "lib/index.js",
"browser": "dist/index.min.js",
"types": "lib/index.d.ts",
"license": "GPL-3.0",
"scripts": {
"build": "tsc -v && tsc -b",
"clean": "rm -rf coverage lib dist",
"package": "webpack --mode development",
"package:analyze": "cross-env ANALYZE=true webpack --mode production",
"package:prod": "webpack --mode production",
"test": "npm run build && jest",
"test:coverage": "npm run build && jest --coverage",
"watch": "tsc -b --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/costflow/parser.git"
},
"keywords": [
"costflow",
"ledger",
"beancount",
"hledger",
"plain text accounting",
"double-entry bookkeeping"
],
"author": "leplay",
"bugs": {
"url": "https://github.com/costflow/parser/issues"
},
"homepage": "https://github.com/costflow/parser#readme",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"dependencies": {
"axios": "^0.21.0",
"dayjs": "^1.9.4",
"lodash": "^4.17.20"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/lodash": "^4.14.164",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"fork-ts-checker-webpack-plugin": "^5.2.0",
"jest": "^26.6.1",
"jest-circus": "^26.6.1",
"path": "^0.12.7",
"regenerator-runtime": "^0.13.7",
"ts-jest": "^26.3.0",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12"
},
"sideEffects": false
}