-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
72 lines (72 loc) · 2.56 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
{
"name": "enigma.js",
"version": "2.14.0",
"description": "JavaScript library for consuming Qlik backend services",
"author": "QlikTech International AB",
"license": "MIT",
"scripts": {
"build": "rollup -c && cross-env NODE_ENV=production rollup -c",
"test": "aw -c test/aw.config.json",
"test:watch": "aw -c test/aw.config.json -w",
"test:unit": "aw -c test/aw.config.json --glob test/unit/{,**/}*.spec.js",
"test:unit:watch": "aw -c test/aw.config.json --glob test/unit/{,**/}*.spec.js -w",
"test:component": "aw -c test/aw.config.json --glob test/component/**/*.spec.js",
"test:component:watch": "aw -c test/aw.config.json --glob test/component/**/*.spec.js -w",
"test:integration": "aw -c test/aw.config.json --glob test/integration/**/*.spec.js --mocha.timeout 5000",
"lint": "eslint .",
"jsdoc": "rimraf ./jsdoc && jsdoc ./src -c ./jsdoc-config.json -r -d ./jsdoc",
"scriptappy": "jsdoc ./src -c ./jsdoc-config.json -r ./package.json -X | scriptappy-from-jsdoc -c spec.config.js",
"preversion": "npm run test && npm run test:integration",
"version": "npm run build && npm run scriptappy"
},
"repository": {
"type": "git",
"url": "https://github.com/qlik-oss/enigma.js"
},
"files": [
"/enigma.js",
"/enigma.js.map",
"/enigma.min.js",
"/enigma.min.js.map",
"/enigma.d.ts",
"/sense-utilities.js",
"/sense-utilities.js.map",
"/sense-utilities.min.js",
"/sense-utilities.min.js.map",
"/sense-utilities.d.ts",
"/error-codes.js",
"/error-codes.d.ts",
"/schemas"
],
"main": "enigma.js",
"devDependencies": {
"@after-work.js/aw": "7.0.0-alpha.1",
"@after-work.js/transform": "6.0.14",
"@babel/core": "7.25.2",
"@babel/plugin-transform-modules-commonjs": "7.24.8",
"@babel/preset-env": "7.25.3",
"@joseph184/rollup-plugin-node-builtins": "2.1.4",
"babel-plugin-istanbul": "6.1.1",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"extend": "3.0.2",
"jsdoc": "4.0.3",
"node-event-emitter": "0.0.1",
"querystring": "0.2.1",
"rimraf": "6.0.1",
"rollup": "2.79.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "10.0.0",
"rollup-plugin-license": "3.5.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "7.0.2",
"scriptappy-from-jsdoc": "0.7.0",
"ws": "8.17.1"
}
}