This repository was archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.86 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.86 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "datapackage-ui",
"version": "1.2.2",
"license": "MIT",
"author": "roll <eskarev@gmail.com>",
"description": "UI components for datapackage",
"homepage": "https://github.com/frictionlessdata/datapackage-ui",
"bugs": "https://github.com/frictionlessdata/datapackage-ui/issues",
"repository": "github:frictionlessdata/datapackage-ui",
"main": "dist/datapackage-ui.js",
"engines": {
"node": ">=4"
},
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"analyze": "NODE_ENV=production webpack --profile --json | webpack-bundle-size-analyzer",
"build": "npm run compile && npm run bundle",
"bundle": "webpack --output-pathinfo --progress --hide-modules && NODE_ENV=production webpack --progress --hide-modules",
"compile": "babel src --out-dir lib && cp -r src/styles lib",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"dev": "webpack-dev-server --inline --hot --open",
"format": "prettier --write '{src,test}/**/*.js' && eslint --fix '{src,test}/**/*.js'",
"lint": "prettier --check '{src,test}/**/*.js' && eslint '{src,test}/**/*.js'",
"pretest": "npm run lint",
"readme": "doctoc --maxlevel 3 README.md",
"test": "jest --coverage && JEST_ENV=jsdom jest",
"update": "ncu -u"
},
"dependencies": {
"axios": "^0.19.2",
"classnames": "^2.2.6",
"datapackage": "^1.1.8",
"lodash": "^4.17.15",
"react-redux": "^7.2.0",
"recompose": "^0.30.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.5",
"tableschema": "^1.12.3",
"uuid": "^3.4.0"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"compression-webpack-plugin": "^3.1.0",
"coveralls": "^3.0.11",
"css-loader": "^3.4.2",
"doctoc": "^1.4.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.0.0",
"http-server": "^0.12.1",
"husky": "^4.2.3",
"jest": "^25.2.4",
"mini-css-extract-plugin": "^0.9.0",
"npm-check-updates": "^4.1.0",
"prettier": "^2.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.20",
"react-test-renderer": "^16.13.1",
"referencer": "^0.2.5",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-bundle-size-analyzer": "^3.1.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}