-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.08 KB
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
{
"name": "mathjs",
"version": "1.0.0",
"description": "Matemáticas básicas con JavaScript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tw:build": "npx tailwindcss -i ./src/css/input.css -o ./public/css/main.css --watch",
"lint": "eslint public/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mvalenciar/JavaScriptMath.git"
},
"keywords": [
"matematicas",
"aritmetica",
"geometria",
"estadistica"
],
"author": "Milton Alonso Valencia Rincon",
"license": "ISC",
"bugs": {
"url": "https://github.com/mvalenciar/JavaScriptMath/issues"
},
"homepage": "https://github.com/mvalenciar/JavaScriptMath#readme",
"devDependencies": {
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"tailwindcss": "^3.3.1"
},
"dependencies": {
"animate.css": "^4.1.1"
}
}