forked from 0xStarcat/CircularNatalHoroscopeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 847 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
38
{
"name": "circular-natal-horoscope-js",
"version": "1.0.3",
"description": "",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "webpack --mode=production",
"build:dev": "webpack",
"start:dev": "webpack --watch --mode=production"
},
"keywords": [
"Astrology",
"Horoscope",
"Natal Chart"
],
"author": "0xStarcat",
"license": "Unlicense",
"dependencies": {
"moment": "^2.24.0",
"moment-timezone": "^0.5.26",
"tz-lookup": "^6.1.24"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-jest": "^24.9.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.8"
},
"files": [
"dist/index.js"
]
}