-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
68 lines (68 loc) · 1.61 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
68
{
"name": "js-feel",
"version": "1.4.7",
"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": "[email protected]:EdgeVerve/feel.git"
},
"keywords": [
"FEEL",
"DMN 1.1",
"Expression",
"Language",
"PEG",
"PEGjs",
"Decision Table",
"Rule Engine"
],
"author": "Pragyan Das <[email protected]>",
"dependencies": {
"big.js": "3.2.0",
"bunyan": "1.8.13",
"lodash": "4.17.21",
"moment": "2.29.4",
"moment-timezone": "0.5.27",
"xlsx": "0.17.0"
},
"devDependencies": {
"chai": "3.4.1",
"chalk": "1.1.1",
"eslint": "4.10.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"gulp": "4.0.2",
"gulp-clean": "0.3.2",
"gulp-concat": "2.6.1",
"gulp-eslint": "3.0.1",
"gulp-if": "2.0.2",
"gulp-insert": "0.5.0",
"gulp-istanbul": "1.1.3",
"gulp-mocha": "7.0.2",
"gulp-util": "3.0.8",
"istanbul": "0.4.5",
"minimist": "1.2.0",
"mocha": "5.2.0",
"pegjs": "0.10.0",
"pegjs-backtrace": "0.1.2",
"pre-commit": "1.2.2",
"through2": "2.0.5"
}
}