-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 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
{
"name": "facet-js-client",
"version": "0.0.1",
"description": "A JS client library for the Virtuoso Faceted Browsing Service",
"main": "dist/facet-js-client.js",
"directories": {
"test": "test"
},
"dependencies": {
"jsdoc-export-default-interop": "0.3.1",
"karma-mocha-reporter": "2.2.5"
},
"devDependencies": {
"@babel/core": "7.12.16",
"@babel/preset-env": "7.12.16",
"@babel/preset-stage-3": "7.8.3",
"babel-loader": "8.2.2",
"chai": "4.2.0",
"jsdoc": "3.6.6",
"karma": "6.1.1",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.1.0",
"karma-mocha": "2.0.1",
"karma-sourcemap-loader": "0.3.8",
"karma-webpack": "5.0.0",
"mocha": "8.3.0",
"webpack": "5.22.0",
"webpack-cli": "4.5.0"
},
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"debug": "karma start --browsers ChromeHeadless karma.conf.js",
"doc": "npx jsdoc -c ./jsdoc.conf.json --verbose; cp -r ./img ./doc/img"
},
"browser": {
"child_process": false
},
"author": "Carl Blakeley",
"license": "ISC"
}