forked from EdgeVerve/feel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.73 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "js-feel",
"version": "1.4.4",
"description": "FEEL(Friendly Enough Expression Language) based on DMN specification 1.1 for conformance level 3",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lintfix": "eslint . --fix",
"test": "./node_modules/.bin/mocha ./test/**/*.spec.js",
"build": "./node_modules/.bin/gulp",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"engines": {
"node": ">=6.9.2"
},
"repository": {
"type": "git",
"url": "git@github.com:keyreply/feel.git"
},
"keywords": [
"FEEL",
"DMN 1.1",
"Expression",
"Language",
"PEG",
"PEGjs",
"Decision Table",
"Rule Engine"
],
"author": "Pragyan Das <pragyandas@msn.com>",
"dependencies": {
"big.js": "^5.2.2",
"bunyan": "^1.8.12",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"moment-timezone": "^0.5.13",
"xlsx": "^0.15.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chalk": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^6.0.0",
"gulp-if": "^3.0.0",
"gulp-insert": "^0.5.0",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^7.0.2",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.1",
"istanbul": "^0.4.5",
"minimist": "^1.2.0",
"mocha": "^7.1.0",
"pegjs": "^0.10.0",
"pegjs-backtrace": "^0.2.0",
"pre-commit": "^1.2.2",
"through2": "^3.0.1"
},
"resolutions": {
"natives": "1.1.3",
"graceful-fs": "4.2.3"
}
}