forked from frankthelen/rools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.49 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
{
"name": "rools",
"version": "2.3.0",
"description": "A small rule engine for Node.",
"main": "src/index.js",
"types": "src/index.d.ts",
"author": "Frank Thelen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/frankthelen/rools"
},
"keywords": [
"rules",
"rule",
"engine",
"rools",
"rule engine",
"rules engine"
],
"scripts": {
"lint": "eslint . --ignore-path ./.eslintignore",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive test/**/*.spec.js",
"test:typescript": "mocha -r ts-node/register test/typescript/**/*.spec.ts",
"coverage": "nyc report --reporter=lcovonly",
"preversion": "npm run lint && npm test"
},
"engines": {
"node": ">=10.x.x"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.0.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-should-promised": "^2.0.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"dependencies": {
"arrify": "^2.0.1",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"uniqueid": "^1.0.0"
}
}