forked from joewalnes/filtrex
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "filtrex",
"version": "3.1.0",
"description": "A simple, safe, JavaScript Filter Expression compiler for end-users",
"main": "dist/cjs/filtrex.js",
"types": "dist/esm/filtrex.d.ts",
"module": "dist/esm/filtrex.mjs",
"repository": "[email protected]:cshaa/filtrex.git",
"contributors": [
"albehrens",
"alexgorbatchev",
"arendjr",
"bradparks",
"joewalnes",
"cshaa",
"msantos"
],
"license": "MIT",
"scripts": {
"format": "prettier . --write",
"build": "gulp && pnpm format",
"test": "pnpm build && mocha test",
"debug": "mocha test --inspect-brk"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@rollup/plugin-babel": "^6.0.4",
"@types/chai": "^4.3.20",
"@types/chai-arrays": "^2.0.3",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.5",
"chai": "^4.5.0",
"chai-arrays": "^2.2.0",
"del": "^8.0.0",
"gulp": "^5.0.0",
"gulp-beautify": "^3.0.0",
"gulp-rename": "^2.0.0",
"gulp-uglify-es": "^3.0.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"rollup": "^2.72.1",
"vinyl": "^3.0.0"
},
"resolutions": {
"glob-parent": "^6.0.2"
},
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
}