forked from ad-si/Transity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.63 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.63 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
{
"name": "transity",
"description": "Keep track of your 💵, 🕘, 🐖, 🐄, 🍻 or anything else.",
"version": "0.8.0",
"main": "output/Main/index.js",
"browser": "webapp/main.js",
"bin": {
"transity": "cli/main.js"
},
"scripts": {
"minify": "uglifyjs --compress --mangle --output index.js index.js",
"bundle": "spago bundle-module && npm run minify",
"prepublishOnly": "npm test && npm run bundle",
"test": "spago test && npm run lint-js",
"lint-js": "eslint --max-warnings=0 --ignore-path=.gitignore scripts"
},
"directories": {
"test": "tests"
},
"files": [
"index.js",
"/scripts",
"!.DS_Store"
],
"keywords": [
"accounting",
"cli",
"command-line-tool",
"ledger",
"money",
"plaintext-accounting",
"purescript",
"tui"
],
"author": "Adrian Sieber",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/feramhq/transity.git"
},
"dependencies": {
"big-integer": "^1.6.48",
"chrono-node": "^2.1.9",
"csvnorm": "^0.10.0",
"js-yaml": "^3.14.0"
},
"optionalDependencies": {
"converter": "0.0.5",
"inquirer": "^7.3.3",
"nightmare": "^3.0.2",
"nightmare-inline-download": "^0.2.2",
"tempy": "^1.0.0"
},
"devDependencies": {
"conventional-changelog-cli": "^2.1.0",
"cssnano": "^4.1.10",
"eslint": "^7.12.1",
"eslint-config-javascript": "^1.3.0",
"markdown-toc": "^1.2.0",
"parcel": "^1.12.4",
"purescript": "^0.13.8",
"spago": "^0.16.0",
"uglify-js": "^3.11.4"
},
"eslintConfig": {
"extends": "eslint-config-javascript"
}
}