-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.04 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
{
"name": "k-means-workshop",
"version": "1.0.0",
"description": "Workshop for k-means clustering",
"main": "index.js",
"repository": "[email protected]:NikhilVerma/k-means-workshop.git",
"author": "Nikhil Verma <[email protected]>",
"license": "MIT",
"scripts": {
"1d": "parcel 1d-example/index.html",
"2d": "parcel 2d-example/index.html",
"image": "parcel image-example/index.html",
"build": "rm -rf dist && NODE_ENV=production parcel build index.html",
"lint": "eslint ."
},
"devDependencies": {
"@types/eslint": "^4.16.6",
"@types/eslint-plugin-prettier": "^2.2.0",
"@types/lodash-es": "^4.17.3",
"@types/matter-js": "^0.10.2",
"@types/prettier": "^1.16.4",
"babel-eslint": "10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"parcel-bundler": "^1.12.3",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"prettier": "^1.18.2"
}
}