-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 1.01 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
{
"name": "onedegreeequationstandardizer",
"version": "1.0.0",
"description": "🤐 Beware - Its all about math ``` Convert 2x + 3y + 10z - 20 + x = 10 into 3x + 3y + 10z = 30 (Ax + By + Cz = D) form ``` Equation Standardizer is made with sole purpose of making any user input equation of one degree, into standard form.",
"main": "OneDegreeEquationStandardizer.js",
"scripts": {
"minify" : "uglifyjs --compress --mangle --output ./release/oneDegreeEquationStandardizer.min.js -- ./release/oneDegreeEquationStandardizer.js",
"build": "tsc && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rishadbaniya/OneDegreeEquationStandardizer.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rishadbaniya/OneDegreeEquationStandardizer/issues"
},
"homepage": "https://github.com/rishadbaniya/OneDegreeEquationStandardizer#readme",
"devDependencies": {
"typescript": "^4.2.4",
"uglify-js": "^3.13.6"
}
}