-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.07 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
57
58
59
60
61
{
"name": "nickel-search",
"version": "0.6.1",
"description": "Nickel Search Server is a basic serverless prefix search indexer",
"keywords": [
"nickel",
"search",
"serverless",
"autocomplete"
],
"main": "lib/main.js",
"types": "lib/main.d.ts",
"files": [
"lib/**/*",
"LICENSE"
],
"scripts": {
"test": "npx jest",
"build": "tsc -p tsconfig.json",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build && npm run lint && npm run test",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"samples:build": "npm run build && tsc -p ./samples/tsconfig.json && npm run test",
"samples:deploy": "npm run samples:build && node ./samples/dist/deploy.js",
"samples:index": "npm run samples:build && node ./samples/dist/indexer.js",
"samples:search": "npm run samples:build && node ./samples/dist/search.js",
"profile:index": "npm run samples:build && node --prof ./samples/dist/indexer.js",
"profile:process": "npm run samples:build && node --prof-process"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:aynurin/nickel-search.git"
},
"author": "Shavkat Aynurin",
"license": "MIT",
"homepage": "https://github.com/aynurin/nickel-search",
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/dir-walker-gen": "^1.0.0",
"@types/jest": "^24.0.12",
"@types/node": "^11.13.9",
"@types/node-uuid": "0.0.28",
"@types/rimraf": "^2.0.2",
"@types/uuid": "^3.4.6",
"jest": "^24.9.0",
"memory-streams": "^0.1.3",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"dependencies": {
"aws-sdk": "^2.452.0",
"commander": "^2.20.0",
"dir-walker-gen": "^1.0.1",
"uuid": "^3.3.3"
}
}