-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
67 lines (67 loc) · 1.63 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
{
"name": "regent",
"version": "3.6.0",
"description": "Javascript rules engine",
"repository": {
"type": "git",
"url": "https://github.com/northwesternmutual/regent"
},
"source": "src/regent.ts",
"main": "dist/regent.js",
"module": "dist/regent.modern.module.js",
"unpkg": "dist/regent.umd.js",
"ts-standard": {
"project": "./tsconfig.json"
},
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage",
"build": "microbundle --external none",
"dev": "microbundle watch",
"publish": "npm run build && npm publish",
"lint": "tsc -p tsconfig.json --noEmit && eslint src/**/*.ts",
"sanity": "node example/sanity-test.mjs"
},
"pre-push": [
"test-coverage",
"build"
],
"keywords": [
"logic",
"engine",
"rules",
"self-documenting",
"business"
],
"author": "Northwestern Mutual",
"license": "MIT",
"bugs": {
"url": "https://github.com/northwesternmutual/regent/issues"
},
"homepage": "https://github.com/northwesternmutual/regent/blob/master/README.md",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"@babel/preset-typescript": "^7.25.9",
"@types/jest": "^29.5.14",
"eslint": "^9.13.0",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"neostandard": "^0.11.7",
"pre-push": "^0.1.4",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}