-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.68 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
{
"name": "moneybit",
"description": "A Cli tool for creating a general ledger from the journal.",
"scripts": {
"bootstrap": "lerna bootstrap",
"test": "mocha \"packages/{,**/}__tests__/**/*.js\"",
"lint": "lynt",
"doc": "domaindoc",
"gh-pages": "npm run clean && domaindoc build && cp -r media docs/ && gh-pages -d docs",
"clean": "rimraf doc coverage",
"cov": "nyc --reporter=lcov --reporter=text-summary npm test",
"codecov": "npm run cov && codecov",
"prepublish": "npm run clean",
"demo-ledger": "node src/cli.js ledger samples/journal.yml --chart samples/chart.yml",
"demo-monthly": "node src/cli.js monthly samples/journal.yml 売上 --chart samples/chart.yml",
"demo-monthly-ledger": "node src/cli.js monthly-ledger samples/journal.yml 売上 --chart samples/chart.yml",
"demo-bs": "node src/cli.js bs samples/journal.yml --chart samples/chart.yml",
"demo-update": "node src/cli.js --journal samples/journal.yml --chart samples/chart.yml > samples/ledger.yml",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/kt3k/moneybit.git"
},
"author": "Yoshiya Hinosawa <stibium121@gmail.com> (https://twitter.com/kt3k)",
"license": "MIT",
"devDependencies": {
"chai": "^4.0.0",
"codecov": "^3.2.0",
"domaindoc": "^3.0.3",
"gh-pages": "^2.0.1",
"husky": "^4.0.2",
"lerna": "^3.0.0-rc.0",
"lint-staged": "^10.0.3",
"lynt": "^0.5.5",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"prettier": "^1.13.5",
"rimraf": "^3.0.0"
},
"lint-staged": {
"*.js": [
"prettier --write --no-semi --single-quote",
"lynt --fix",
"git add"
]
}
}