-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.49 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.49 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
{
"private": true,
"author": "Highsoft AS",
"description": "Highsoft WebSearch - Simple search system for the web",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/highcharts/highsoft-websearch#readme",
"main": "lib/index.js",
"name": "@highcharts/highsoft-websearch",
"version": "0.0.5",
"bin": {
"highsoft-websearch": "bin/highsoft-websearch"
},
"bugs": {
"url": "https://github.com/highcharts/highsoft-websearch/issues"
},
"devDependencies": {
"@types/node": "^10.0.0",
"husky": "^8.0.1",
"typescript": "^3.7.7"
},
"engines": {
"node": ">=10"
},
"files": [
"bin/",
"client/",
"lib/",
"highsoft-websearch.json",
"LICENSE.md",
"README.md"
],
"keywords": [
"Highsoft",
"websearch"
],
"repository": {
"type": "git",
"url": "https://github.com/highcharts/highsoft-websearch.git"
},
"scripts": {
"build": "npm run clean && tsc --build sources/client sources/lib",
"clean": "rm -rf client lib tests_results",
"test": "npm run tests",
"tests": "npm run build && ./bin/highsoft-websearch --sideload tests/ http://localhost:8000/tests/",
"tests-online": "npm run build && ./bin/highsoft-websearch https://api.highcharts.com/class-reference/",
"tests-results": "node ./tests_results.js",
"watch": "npm run build -- --watch"
}
}