forked from andypotato/tritra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 793 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 793 Bytes
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
{
"name": "tritra",
"version": "0.1.2",
"author": {
"name": "Andreas Schallwig",
"url": "https://www.mediaman.com.cn/"
},
"description": "Identify isosceles triangles within a set of 2d points",
"license": "MIT",
"main": "dist/js/tritra.js",
"repository": {
"type": "git",
"url": "git://github.com/andypotato/tritra.git"
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development --progress --colors --watch",
"serve": "webpack-dev-server --mode development"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-loader": "^8.0.5",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
}
}