This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.82 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
{
"name": "qlik-modifiers",
"version": "0.9.8",
"description": "A javascript library for applying modifiers to Qlik expressions",
"license": "MIT",
"author": "QlikTech International AB",
"keywords": [
"qlik",
"modifiers",
"expression modifiers"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/qlik-oss/qlik-modifiers.git"
},
"files": [
"/dist"
],
"engines": {
"npm": ">=9.9.3",
"node": ">=v16.20.2"
},
"main": "dist/qlik-modifiers.js",
"scripts": {
"build": "webpack --config ./webpack.config.js",
"build:dev": "webpack --config ./webpack.config.js --mode=development",
"lint": "eslint src",
"test": "aw -c aw.config.js",
"generateDocs": "jsdoc2md ./src/**.js > ./docs/api.md",
"generateDocs:watch": "npx nodemon --exec 'jsdoc2md ./src/**.js > ./docs/api.md' --watch src",
"prepublishOnly": "rm -rf dist && npm run build",
"release": "release-it",
"test-coverage": "npx aw -c aw.config.js --mocha.bail false --mocha.reporterOptions.mochaFile ./coverage/junit/junit.xml"
},
"devDependencies": {
"@after-work.js/aw": "^6.0.14",
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@release-it/conventional-changelog": "5.1.1",
"babel-loader": "9.2.1",
"babel-plugin-istanbul": "^7.0.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"extend": "^3.0.2",
"jsdoc-to-markdown": "^8.0.3",
"mocha-junit-reporter": "^2.2.1",
"release-it": "15.11.0",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "5.95.0",
"webpack-cli": "5.1.4"
}
}