-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 897 Bytes
/
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
{
"name": "find-horoscope",
"version": "0.6.0",
"description": "Find your zodiac sign by date of birth",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest"
},
"keywords": [
"horoscope",
"zodiac sign",
"find-horoscope",
"astrology",
"rising sign",
"chinese-zodiac"
],
"homepage": "https://github.com/cankatabaci/find-horoscope",
"repository": {
"type": "git",
"url": "https://github.com/cankatabaci/find-horoscope.git"
},
"author": "Cankat Abacı",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.4.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {}
}