-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "decision-table",
"version": "0.0.1",
"description": "Provides a simple way to implement decision tables",
"main": "build/DecisionTable.js",
"types": "build/DecisionTable.d.ts",
"repository": {
"type" : "git",
"url" : "https://github.com/rafabulsing/decision-table"
},
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register tests/**/*.tests.ts",
"coverage": "nyc npm test",
"clean": "rimraf .nyc_output build"
},
"keywords": [
"decision-table",
"decision",
"table"
],
"author": "@rafabulsing",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"@types/sinon": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"chai": "^4.2.0",
"eslint": "^7.16.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^9.2.2",
"source-map-support": "^0.5.19",
"ts-lint": "^4.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {}
}