-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
41
{
"name": "calculusvisualizer",
"version": "1.0.0",
"description": "Calculus visualizer enables students to gain an intuitive understanding of calculus by showing the wonders of calculus in action. ",
"main": "index.html",
"scripts": {
"build": "webpack --config ./webpack.config.js --mode development",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectsByJackHe/CalculusVisualizer.git"
},
"keywords": [
"derivatives",
"integrals",
"riemann",
"sums",
"taylor",
"series",
"maclaurin",
"series"
],
"author": "ProjectsByJackHe",
"license": "MIT",
"bugs": {
"url": "https://github.com/ProjectsByJackHe/CalculusVisualizer/issues"
},
"homepage": "https://github.com/ProjectsByJackHe/CalculusVisualizer#readme",
"dependencies": {
"mathjs": "^7.5.1"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-loader": "^8.0.6",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}