-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "@astrodraw/astrochart",
"version": "3.0.2",
"description": "A free and open-source JavaScript library for generating SVG charts to display planets in astrology.",
"keywords": [
"astrology",
"chart",
"horoscope",
"zodiac",
"ephemetis"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AstroDraw/AstroChart.git"
},
"main": "./dist/astrochart.js",
"types": "./dist/project/src/index.d.ts",
"scripts": {
"test": "jest",
"test:w": "jest --watch",
"test:coverage": "jest --coverage",
"build": "webpack",
"build:w": "webpack --watch",
"lint": "eslint --ignore-path .eslintignore --ext .ts ."
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^27.5.1",
"terser-webpack-plugin": "^5.3.1",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"typescript": "^4.9.5",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
}
}