-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.24 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
{
"name": "ldap-filter-analyzer",
"homepage": "https://piellardj.github.io/ldap-filter-analyzer",
"description": "Tool to make LDAP filters readable",
"author": "Jérémie PIELLARD <[email protected]> (https://github.com/piellardj)",
"repository": "github:piellardj/ldap-filter-analyzer",
"private": true,
"license": "ISC",
"scripts": {
"pre-commit": "npm run rebuild && npm run lint && npm run test",
"build": "npm run build-page && npm run webpack",
"build-page": "ts-node-script src/generate-page.ts",
"clean": "shx rm -rf docs/* **/*generated.*",
"lint": "tslint -c src/config/tslint.json -p src/config/tsconfig.json",
"test": "jest --config=src/config/jest.config.js",
"rebuild": "npm run clean && npm run build",
"webpack": "webpack --config src/config/webpack.config.js"
},
"engines": {
"node": ">=18.16.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.0",
"jest": "^29.5.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.1.3",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpage-templates": "github:piellardj/webpage-templates"
}
}