-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.85 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.85 KB
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
{
"name": "@finos/perspective-viewer-datagrid",
"version": "0.10.0",
"description": "Perspective.js",
"main": "dist/esm/perspective-viewer-datagrid.js",
"module": "dist/esm/perspective-viewer-datagrid.js",
"browser": "dist/esm/perspective-viewer-datagrid.js",
"unpkg": "dist/umd/perspective-viewer-datagrid.js",
"jsdelivr": "dist/umd/perspective-viewer-datagrid.js",
"files": [
"dist/**/*",
"babel.config.js"
],
"scripts": {
"bench": "npm-run-all bench:build bench:run",
"bench:build": "echo \"No Benchmarks\"",
"bench:run": "echo \"No Benchmarks\"",
"prebuild": "mkdirp dist/esm",
"build:rollup:esm": "rollup --config src/config/rollup.config.js",
"build:webpack:umd": "webpack --color --config src/config/webpack.config.js",
"build": "npm-run-all build:rollup:esm build:webpack:umd",
"test:build": "cpx \"test/html/*\" dist/umd",
"test:run": "jest --rootDir=. --config=../perspective-test/jest.config.js --color",
"test": "npm-run-all test:build test:run",
"watch:rollup": "rollup --watch --config src/config/rollup.config.js",
"watch:webpack": "webpack --watch --color --config src/config/webpack.config.js",
"watch": "npm-run-all -p watch:*",
"clean": "rimraf dist",
"clean:screenshots": "rimraf \"screenshots/**/*.@(failed|diff).png\""
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/finos/perspective"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@finos/perspective": "^0.10.0",
"@finos/perspective-viewer": "^0.10.0",
"chroma-js": "^1.3.4",
"regular-table": "=0.4.1"
},
"devDependencies": {
"@finos/perspective-test": "^0.10.0"
}
}