forked from TechnologyAdvice/Jexl
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.24 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
{
"version": "1.1.6",
"name": "mozjexl",
"description": "Javascript Expression Language: Powerful context-based expression parser and evaluator",
"main": "lib/Jexl.js",
"directories": {
"test": "test"
},
"scripts": {
"watch": "webpack --config ./webpack.config.js --watch",
"build": "webpack --config ./webpack.config.js",
"test": "mocha -R spec --recursive test",
"lint": "eslint lib test .eslintrc.js --ignore-pattern '!.eslintrc.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/mozilla/mozjexl"
},
"keywords": [
"JSON",
"expression",
"evaluator",
"parser",
"target",
"context",
"jsep",
"filter",
"selector"
],
"authors": [
"Tom Shawver <tom@frosteddesign.com>",
"Michael Cooper <mcooper@mozilla.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mozilla/mozjexl/issues"
},
"homepage": "https://github.com/mozilla/mozjexl",
"devDependencies": {
"chai": "^2.0.0",
"chai-as-promised": "^4.2.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"license-webpack-plugin": "0.5.1",
"mocha": "^2.1.0",
"prettier": "^1.10.2",
"webpack": "3.1.0"
}
}