-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.98 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.98 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
50
51
52
53
{
"name": "@finos/perspective-phosphor",
"version": "0.4.0-rc.4",
"description": "Perspective.js",
"files": [
"dist/**/*",
"src/css/*.css",
"babel.config.js"
],
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"scripts": {
"bench": "npm-run-all bench:build bench:run",
"bench:build": "echo \"No Benchmarks\"",
"bench:run": "echo \"No Benchmarks\"",
"build": "npm-run-all build:esm build:cjs build:styles build:umd",
"build:esm": "tsc --p ./config --outDir dist/esm",
"build:cjs": "webpack --color --config config/webpack.config.js",
"build:styles": "webpack --color --config config/webpack.theme.config.js",
"build:umd": "webpack --color --config config/webpack.umd.config.js",
"clean": "rimraf dist",
"test": "yarn test:run",
"test:run": "npm-run-all test:unit test:integration",
"test:unit": "jest --color --silent --config=./config/jest.unit.config.js 2>&1",
"test:integration": "jest --color --silent --config=./config/jest.integration.config.js 2>&1"
},
"dependencies": {
"@finos/perspective": "^0.4.0-rc.4",
"@finos/perspective-viewer": "^0.4.0-rc.4",
"@phosphor/application": "^1.7.3",
"@phosphor/default-theme": "0.1.8",
"@phosphor/widgets": "^1.9.3",
"lodash.uniqby": "^4.7.0"
},
"devDependencies": {
"@finos/perspective-webpack-plugin": "^0.4.0-rc.4",
"@types/jest": "^24.0.19",
"@types/lodash.uniqby": "^4.7.6",
"file-loader": "^0.11.1",
"identity-obj-proxy": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"jest-transform-css": "^2.0.0",
"mini-css-extract-plugin": "^0.8.0",
"rimraf": "^2.5.2",
"source-map-support": "^0.5.9",
"typescript": "^3.6.0",
"webpack-fix-style-only-entries": "^0.4.0"
}
}