-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 846 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 846 Bytes
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
{
"name": "node-ledger",
"version": "0.2.0",
"description": "Simple library to work with accounting ledger.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha test/**",
"precommit": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/reekoheek/node-ledger.git"
},
"author": "Ganesha <reekoheek@gmail.com> (http://sagara.id)",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "^5.4.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-xinix": "^1.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^0.14.3",
"mocha": "^5.2.0"
},
"dependencies": {
"uuid": "^3.3.2"
}
}