-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "anim",
"version": "2.0.0",
"description": "Quick JS program for creating animations.",
"private": true,
"scripts": {
"start": "webpack serve --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint --cache --ext .js ./",
"format": "eslint --fix --cache --ext .js ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JonComo/anim.git"
},
"keywords": [],
"author": {
"name": "JC",
"email": "jon@underground.net",
"url": "http://joncomo.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/JonComo/anim/issues"
},
"homepage": "https://github.com/JonComo/anim#readme",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.1.1",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"html-webpack-plugin": "^5.2.0",
"style-loader": "^2.0.0",
"webpack": "^5.76.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"file-saver": "^2.0.5",
"html-loader": "^2.1.2",
"markdown-loader": "^8.0.0",
"mathjs": "^9.2.0"
}
}