-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.46 KB
/
package.json
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
{
"name": "@acpaas-ui/embeddable-widgets",
"version": "2.0.9",
"description": "Library for embedding parts of apps into other apps",
"main": "lib/aui-embeddable-widgets.js",
"scripts": {
"start": "nodemon index.js",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --env dev && cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --env build && npm run test",
"dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --progress --colors --watch --env dev",
"test": "mocha --exit ./test/*.spec.js",
"test:watch": "mocha -w ./test/*.spec.js",
"test:coverage": "cross-env NODE_ENV=test nyc mocha ./test/*.spec.js",
"aws": "node publish.js",
"prepare": "patch-package"
},
"author": "Digipolis",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/digipolisantwerp/embeddable-widgets_module_js.git"
},
"browserslist": "> 0.25%, not dead",
"mocha": {
"require": [
"@babel/register",
"jsdom-global/register",
"test/helper"
]
},
"nyc": {
"sourceMap": false,
"instrument": false,
"include": [
"src/**/*.js",
"src/**/*.jsx"
],
"reporter": [
"lcov",
"text"
],
"all": true
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^5.1.4",
"belter": "^1.0.103",
"chai": "^4.3.10",
"core-js": "^2.6.9",
"cross-env": "^5.2.1",
"deepmerge": "^4.0.0",
"es6-promise": "^4.2.6",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.3",
"express": "^4.17.1",
"jsdom": "^22.0.0",
"jsdom-global": "3.0.2",
"jsx-pragmatic": "^2.0.7",
"mocha": "^10.2.0",
"mocha-sinon": "^2.1.0",
"nodemon": "^3.0.1",
"nyc": "^14.1.1",
"patch-package": "^8.0.0",
"sinon": "^7.3.2",
"smoothscroll-polyfill": "^0.4.4",
"url-polyfill": "^1.1.5",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12",
"yargs": "^15.4.1",
"zalgo-promise": "^1.0.40",
"zoid": "9.0.31"
},
"overrides": {
"glob-parent": "^6.0.1"
}
}