UNPKG

3.32 kBJSONView Raw
1{
2 "name": "@finos/perspective-viewer",
3 "version": "0.4.3",
4 "description": "Perspective.js",
5 "main": "dist/cjs/perspective-viewer.js",
6 "module": "dist/cjs/perspective-viewer.js",
7 "unpkg": "dist/umd/perspective-viewer.js",
8 "browser": {
9 "themes/all-themes.less": "./dist/themes/all-themes.less",
10 "themes/all-themes.css": "./dist/umd/all-themes.css",
11 "themes/material.less": "./dist/themes/material.less",
12 "themes/material.css": "./dist/umd/material.css",
13 "themes/material.dark.less": "./dist/themes/material.dark.less",
14 "themes/material.dark.css": "./dist/umd/material.dark.css",
15 "themes/vaporwave.less": "./dist/themes/vaporwave.less",
16 "themes/vaporwave.css": "./dist/umd/vaporwave.css",
17 "themes/material-dense.less": "./dist/themes/material-dense.less",
18 "themes/material-dense.css": "./dist/umd/material-dense.css",
19 "themes/material-dense.dark.less": "./dist/themes/material-dense.dark.less",
20 "themes/material-dense.dark.css": "./dist/umd/material-dense.dark.css"
21 },
22 "files": [
23 "dist/**/*",
24 "index.d.ts"
25 ],
26 "typings": "index.d.ts",
27 "scripts": {
28 "bench": "npm-run-all bench:build bench:run",
29 "bench:build": "echo \"No Benchmarks\"",
30 "bench:run": "echo \"No Benchmarks\"",
31 "prebuild": "mkdirp dist/esm",
32 "build:babel": "cpx \"src/**/*\" dist && babel src/js --source-maps --out-dir dist/esm",
33 "build:webpack:umd": "webpack --color --config src/config/umd.config.js",
34 "build:webpack:cjs": "webpack --color --config src/config/cjs.config.js",
35 "build": "npm-run-all --silent build:babel build:webpack:cjs build:webpack:umd",
36 "watch": "webpack --color --watch --config src/config/view.config.js",
37 "test:build": "cpx \"test/html/*\" dist/umd && cpx \"test/csv/*\" dist/umd && cpx \"test/css/*\" dist/umd",
38 "test:run": "jest --rootDir=. --config=../perspective-test/jest.config.js --silent --color 2>&1",
39 "test": "npm-run-all test:build test:run",
40 "clean": "rimraf dist",
41 "clean:screenshots": "rimraf \"screenshots/**/*.@(failed|diff).png\"",
42 "docs": "npm-run-all docs:jsdoc docs:deploy",
43 "docs:jsdoc": "jsdoc2md src/js/viewer.js -p list --separators --no-gfm > README.md",
44 "docs:deploy": "(echo \"---\nid: perspective-viewer\ntitle: perspective-viewer API\n---\n\n\"; cat README.md) > ../../docs/obj/perspective-viewer.md"
45 },
46 "publishConfig": {
47 "access": "public"
48 },
49 "repository": {
50 "type": "git",
51 "url": "https://github.com/finos/perspective"
52 },
53 "author": "",
54 "license": "Apache-2.0",
55 "dependencies": {
56 "@babel/runtime": "^7.8.4",
57 "@finos/perspective": "^0.4.2",
58 "@types/react": "^16.9.17",
59 "@webcomponents/shadycss": "^1.5.2",
60 "@webcomponents/webcomponentsjs": "~2.0.4",
61 "awesomplete": "^1.1.2",
62 "core-js": "^3.6.4",
63 "d3-array": "^1.2.1",
64 "detectie": "1.0.0",
65 "lit-html": "^1.1.2",
66 "lodash": "^4.17.4",
67 "mobile-drag-drop": "^2.3.0-rc.2"
68 },
69 "devDependencies": {
70 "@finos/perspective-test": "^0.4.3",
71 "@finos/perspective-webpack-plugin": "^0.4.1"
72 }
73}