-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "umap-js",
"version": "1.4.0",
"description": "JavaScript implementation of UMAP",
"author": {
"name": "Andy Coenen",
"email": "[email protected]"
},
"license": "MIT",
"repository": "PAIR-code/umap-js",
"main": "dist/index.js",
"unpkg": "lib/umap-js.min.js",
"jsdelivr": "lib/umap-js.min.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"bundle": "rm -rf lib && webpack --config ./webpack/lib.config.ts && webpack --config ./webpack/lib.min.config.ts",
"build": "rm -rf dist && tsc && yarn bundle"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^10.12.21",
"jest": "^24.8.0",
"prando": "^5.1.0",
"prettier": "^1.16.4",
"ts-jest": "^24.0.2",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.2",
"typescript": "^3.9.10",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"ml-levenberg-marquardt": "^2.0.0"
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
}
}