-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.81 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
{
"name": "apisearch",
"version": "0.3.18",
"description": "Javascript client for Apisearch.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"dev": "webpack --config ./webpack.dev.js --progress --colors --watch",
"build:lib": "tsc -d --outDir lib -m commonjs",
"build:dev": "webpack --config ./webpack.dev.js",
"build:min": "webpack --config ./webpack.min.js",
"dist": "npm t; rm -rf ./dist/*; npm run build:lib && npm run build:dev && npm run build:min",
"dist-no-test": "rm -rf ./dist/*; npm run build:lib && npm run build:dev && npm run build:min",
"fix": "tslint -c tslint.json --fix 'src/**/*.ts'",
"test:unit": "mocha --timeout 10000 --recursive --require ts-node/register test/**/*.ts test/*.ts",
"test:functional": "mocha --timeout 10000 --recursive --require ts-node/register test/Functional/*/*.ts",
"test": "npm run test:unit && npm run test:functional"
},
"license": "MIT",
"author": "Marc Morera <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/apisearch-io/javascript-client.git"
},
"bugs": {
"url": "https://github.com/apisearch-io/javascript-client/issues"
},
"homepage": "https://github.com/apisearch-io/javascript-client",
"keywords": [
"es6",
"search-engine",
"apisearch",
"webpack4",
"node",
"javascript-client"
],
"devDependencies": {
"@types/chai": "^4.1",
"@types/mocha": "^5.2",
"@types/node": "^10.14",
"@types/sinon": "^7.0",
"chai": "^4.2",
"mocha": "^9.1.3",
"sinon": "^7.3",
"ts-loader": "^9.2.6",
"ts-node": "^8.4",
"tslint": "^5.14",
"typescript": "^3.6",
"webpack": "^5.53.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^4.2"
},
"dependencies": {
"axios": ">=0.21.1",
"ts-md5": "^1.2.4"
}
}