-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.59 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.59 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
{
"name": "@quickcase/javascript-sdk",
"version": "0.4.0",
"description": "Development kit to build QuickCase-flavoured JavaScript applications",
"type": "module",
"main": "dist/main.js",
"exports": {
"import": "./dist/main.mjs",
"require": "./dist/main.js"
},
"files": [
"dist/"
],
"scripts": {
"prepare": "npm run build",
"build": "webpack",
"test": "jest src",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quickcase/javascript-sdk.git"
},
"keywords": [
"quickcase"
],
"author": "QuickCase",
"license": "MIT",
"bugs": {
"url": "https://github.com/quickcase/javascript-sdk/issues"
},
"homepage": "https://github.com/quickcase/javascript-sdk#readme",
"browserslist": [
"> 0.1%, defaults"
],
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/plugin-transform-modules-commonjs": "^7.22.15",
"@babel/preset-env": "^7.23.9",
"babel-loader": "^9.1.3",
"eslint": "^8.56.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.7.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"babel": {
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
},
"jest": {
"coverageReporters": [
"text",
"html"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"transform": {
".js$": "babel-jest"
}
},
"dependencies": {
"mustache": "^4.2.0"
}
}