-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.11 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
{
"name": "queric",
"version": "2.0.0",
"license": "MIT",
"description": "High-performance TypeScript MongoDB inspired query library.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"build": "gulp compile",
"test": "nyc --reporter=html --reporter=text mocha --exit -r ts-node/register test/**/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/LucaCode/queric.git"
},
"author": {
"name": "Ing. Luca Gian Scaringella",
"email": "lucacode1@gmail.com"
},
"files": [
"dist/**/*",
"!.DS_Store"
],
"keywords": [
"esay",
"query",
"array",
"mongoDb inspired",
"select",
"search",
"find",
"fast",
"lightweight"
],
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^12.7.2",
"gulp": "4.0.2",
"gulp-typescript": "5.0.1",
"ts-node": "^8.0.3",
"typescript": "^4.5.4",
"nyc": "^15.1.0",
"chai": "4.3.4",
"mocha": "^9.1.3",
"gulp-optimize-js": "1.1.0",
"gulp-terser": "2.1.0"
}
}