-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·53 lines (53 loc) · 1.36 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
49
50
51
52
53
{
"name": "bank-account-validator-api",
"version": "1.0.0",
"description": "Bank Account Validator Api",
"main": "index.js",
"scripts": {
"babel-node": "babel-node",
"start": "nodemon --exec npm run babel-node ./index.js",
"test": "NODE_ENV=testing mocha --require babel-core/register test --timeout 60000 --reporter spec"
},
"author": "FelipeBarrosCruz<[email protected]>",
"license": "ISC",
"dependencies": {
"boom": "^5.1.0",
"dotenv": "^4.0.0",
"hapi": "^16.1.1",
"hapi-router": "^3.5.0",
"hapi-swagger": "^7.7.0",
"inert": "^4.2.0",
"joi": "^10.5.1",
"lodash": "^4.17.4",
"mongoose": "^4.10.3",
"slug": "^0.9.1",
"vision": "^4.1.1",
"bank-account-validator-js": "git+https://github.com/FelipeBarrosCruz/bank-account-validator-js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "^4.12.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^4.11.0",
"mocha": "^4.0.1",
"nodemon": "^1.11.0",
"qs": "^6.4.0"
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
}
}