-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "@britecore/ui-plugins-client",
"version": "0.11.0",
"main": "src/index.js",
"module": "src/index.js",
"unpkg": "dist/britecore-ui-plugins.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"serve": "webpack-dev-server",
"test": "jest",
"lint": "eslint src",
"coverage": "jest --collect-coverage",
"prepublish": "npm run build"
},
"files": [
"dist/*",
"src/*"
],
"dependencies": {
"@babel/runtime": "^7.7.6",
"penpal": "^5.2.1",
"wait-notify": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.4.5",
"@types/jest": "^26.0.14",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-jest": "^24.1.0",
"jest": "^24.8.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
}
}