-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
108 lines (108 loc) · 2.3 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "jexl",
"version": "2.3.0",
"description": "Javascript Expression Language: Powerful context-based expression parser and evaluator",
"main": "dist/Jexl.js",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write '**/*.{json,js,md}'",
"lint": "eslint '**/*.js'",
"test": "npm run lint && NODE_PATH=./ RESOURCES_PATH=./lib jest --coverage --colors",
"test:watch": "NODE_PATH=./ RESOURCES_PATH=./lib jest --watchAll --colors",
"build": "babel lib -d dist",
"prepublishOnly": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/TomFrost/jexl"
},
"keywords": [
"JSON",
"expression",
"evaluator",
"parser",
"target",
"context",
"jsep",
"filter",
"selector"
],
"author": "Tom Shawver <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TomFrost/jexl/issues"
},
"homepage": "https://github.com/TomFrost/jexl",
"eslintIgnore": [
"node_modules",
"coverage"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{md,json}": [
"prettier --write",
"git add"
],
"**/*.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"testPathIgnorePatterns": [],
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 90,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"lib/**/*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"./lib/PromiseSync.js"
]
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^25.5.4",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5"
},
"babel": {
"plugins": [
"@babel/plugin-transform-runtime"
],
"presets": [
[
"@babel/env",
{
"targets": {
"ie": 11
}
}
]
]
},
"dependencies": {
"@babel/runtime": "^7.10.2"
}
}