-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 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
{
"name": "apache-fineract-api",
"version": "1.0.0",
"description": "Apache Fineract API wrapper https://demo.openmf.org/api-docs/apiLive.htm",
"main": "index.js",
"scripts": {
"test": "jest --config=config.jest.json",
"lint": "./node_modules/.bin/eslint . *.js",
"lint:fix": "./node_modules/.bin/eslint . *.js --fix",
"check:security": "npm audit",
"doc:code": "jsdoc -r -c config.jsdoc.json ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roman-sachenko/apache-fineract-api.git"
},
"eslintIgnore": [
"node_modules",
"docs",
".gitignore",
"test"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test && npm audit"
}
},
"author": "Roman Sachenko",
"license": "ISC",
"dependencies": {
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"faker": "^4.1.0",
"http-status": "^1.2.0",
"jest": "^23.5.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"husky": "^1.0.1",
"jsdoc": "^3.5.5"
}
}