-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 930 Bytes
/
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
{
"name": "jql",
"version": "0.1.0",
"description": "A simple intuitive JSON Query Language inspired by MySQL and jslinq made in javascript.",
"main": "src/JQL.js",
"license": "MIT",
"author": "DerianAndre",
"author": {
"name": "Derian Castillo",
"email": "[email protected]",
"url": "https://derianandre.com"
},
"repository": {
"type": "git",
"url": "https://github.com/DerianAndre/JQL.git"
},
"keywords": [
"jql",
"json",
"query",
"language",
"array",
"json query",
"json mysql",
"json linq"
],
"size-limit": [
{
"limit": "10 kB",
"path": "dist/JQL.min.js"
}
],
"scripts": {
"build": "gulp",
"size": "size-limit"
},
"devDependencies": {
"@size-limit/file": "^4.10.2",
"gulp": "^4.0.2",
"gulp-header": "^2.0.9",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"size-limit": "^4.10.2"
}
}