-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.68 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
{
"name": "@moesol/widget-launch",
"version": "2.6.0-SNAPSHOT",
"description": "NPM library to transition off of OWF. Provides wrapped calls to OWF widget launching functions and alternative implementations using browser windows.",
"main": "build/index.js",
"module": "types/index.js",
"typings": "types/index.d.ts",
"scripts": {
"build": "npm run check-types && api-extractor run --local --verbose && npm test && webpack-cli --mode production --env production",
"prepack": "npm run build",
"check-types": "tsc",
"test": "jest",
"coverage": "jest --coverage",
"prettier": "prettier --single-quote --tab-width 4 --trailing-comma es5 --write './**/*.{ts,tsx,js,jsx}'"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
],
"testMatch": [
"<rootDir>/__tests__/**/*.{js,jsx,ts,tsx}"
]
},
"repository": {
"type": "git",
"url": "https://github.com/MoebiusSolutions/widget-launch.git"
},
"files": [
"/build",
"/types",
"README.md"
],
"keywords": [
"owf"
],
"author": "Moebius Solutions",
"license": "BlueOak-1.0.0",
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@microsoft/api-extractor": "^7.15.1",
"@types/jest": "^26.0.23",
"@types/uuid": "^8.3.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.1.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"typescript": "^4.2.4",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"@moesol/es-runtime": "^2.21.0-SNAPSHOT.0",
"core-js": "^3.11.1",
"events": "^3.3.0",
"uuid": "^8.3.2"
}
}