forked from apisearch-io/javascript-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.75 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
50
51
52
53
54
55
56
{
"name": "apisearch",
"version": "0.2.22",
"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 --display-error-details",
"build:min": "webpack --config ./webpack.min.js --display-error-details",
"dist": "npm t; 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 --recursive --require ts-node/register test/**/*.ts test/*.ts",
"test:functional": "mocha --recursive --require ts-node/register test/Functional/*/*.ts",
"test": "npm run test:unit && npm run test:functional"
},
"license": "MIT",
"author": "Marc Morera <yuhu@mmoreram.com>",
"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.7",
"@types/mocha": "^5.2.6",
"@types/node": "^10.14.4",
"@types/sinon": "^7.0.11",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"sinon": "^7.3.2",
"ts-loader": "^4.5.0",
"ts-md5": "^1.2.4",
"ts-node": "^7.0.1",
"tslint": "^5.14.0",
"typescript": "^2.9.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"axios": "^0.18.0"
}
}