-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "astrology_api",
"version": "1.3.0",
"description": "Api para el calculos astrologicos",
"main": "index.js",
"engines": {
"node": ">=14.x"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon --watch src src/index.js",
"test": "ENVIRONMENT=test jest",
"coverage": "ENVIRONMENT=test jest --coverage",
"coveralls": "ENVIRONMENT=test jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "./node_modules/.bin/eslint --fix src"
},
"jest": {
"coveragePathIgnorePatterns": [
"./app.js"
]
},
"keywords": [
"astrology"
],
"author": "ryuphi",
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"coveralls": "^3.0.9",
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.0",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"express-promise-router": "^3.0.3",
"helmet": "^3.21.3",
"morgan": "^1.9.1",
"sweph": "^2.10.0-5"
}
}