-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "circular-natal-horoscope-js",
"version": "1.1.0",
"description": "",
"main": "dist/index",
"types": "dist/types/src/index",
"module": "src/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/0xStarcat/CircularNatalHoroscopeJS.git"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "webpack --mode=production && tsc",
"build:dev": "webpack",
"build:demo": "webpack -c ./webpack-demo.config.js",
"start:dev": "webpack -c ./webpack-demo.config.js --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",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"typescript": "^4.2.3",
"webpack": "^4.40.2",
"webpack-cli": "^4.5.0"
}
}