-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.75 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "strapi-query-builder",
"version": "1.2.1",
"description": "Utility for creating Strapi queries in declarative and typesafe way",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"scripts": {
"rename": "node -e \"require('fs').rename('lib/esm/index.js', 'lib/esm/index.mjs', function(err) { if (err) console.log(err);})\"",
"clean": "rimraf lib",
"pretty": "prettier --write \"./**/*.{js,jsx,ts,tsx,json}\"",
"build:esm": "tsc -p ./tsconfig.esm.json && npm run rename",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run pretty",
"prepack": "npm run build",
"test": "npm run build && jest",
"speed": "node tests/performance-test.js",
"coverage": "jest --coverage",
"semantic-release": "semantic-release"
},
"keywords": [
"strapi",
"query",
"utils",
"utilities"
],
"author": "Igor Badanyuk",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.3",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"rimraf": "^4.1.2",
"semantic-release": "^20.1.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"release": {
"branches": [
"master"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Refrezsh/strapi-query-builder"
},
"exports": {
".": {
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"files": [
"lib/**/*"
],
"engines": {
"node": ">=14.19.1 <=18.x.x"
}
}