-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 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
51
52
{
"name": "@timkit/conditions",
"version": "1.1.1",
"description": "A flexible TypeScript condition checker for evaluating complex conditions against objects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"build": "tsc",
"start": "ts-node src/example.ts",
"example": "npm run build && node dist/example.js",
"prepublishOnly": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timkit-dev/conditions.git"
},
"keywords": [
"conditions",
"rules",
"validation",
"condition",
"typescript",
"conditional-logic",
"form-validation",
"data-validation"
],
"author": "timkit.dev",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/timkit-dev/conditions/issues"
},
"homepage": "https://github.com/timkit-dev/conditions#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}