-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.14 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "uapca",
"version": "0.7.0",
"description": "Uncertainty-aware principal component analysis.",
"keywords": [
"uncertainty",
"dimensionality reduction",
"machine learning",
"visualization"
],
"author": {
"name": "Jochen Görtler",
"url": "https://www.jgoertler.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grtlr/uapca.git"
},
"license": "MIT",
"main": "dist/uapca.node.js",
"module": "dist/uapca.node.es.js",
"types": "dist/src/index.d.ts",
"unpkg": "dist/uapca.min.js",
"jsdelivr": "dist/uapca.min.js",
"files": [
"dist/uapca.js",
"dist/uapca.min.js",
"dist/uapca.node.js",
"dist/uapca.node.js.map",
"dist/uapca.node.es.js",
"dist/uapca.node.es.js.map",
"dist/src/index.d.ts"
],
"scripts": {
"build:node": "rollup -c rollup.node.js",
"build:bundle": "rollup -c",
"build": "npm-run-all build:*",
"dev": "rollup -c rollup.node.js -w",
"lint": "eslint --config .eslintrc.json --ext .js,.html,.ts src tests",
"lint-fix": "eslint --fix --config .eslintrc.json --ext .js,.html,.ts src tests",
"test": "ts-mocha -p tsconfig.test.json tests/**/*.ts"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/d3-array": "^2.0.0",
"@types/expect": "^1.20.4",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^4.2.0",
"eslint": "^6.0.0",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.16.2",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript2": "^0.21.2",
"ts-mocha": "^6.0.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@types/d3-random": "^1.1.2",
"d3-array": "^2.3.2",
"d3-random": "^2.0.0",
"ml-matrix": "^6.2.0"
}
}