-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1008 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1008 Bytes
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": "spleen",
"longName": "spleen",
"description": "Dynamic filter expression parsing, formatting, and abstractions for web APIs.",
"version": "1.3.0",
"dependencies": {
"elv": "^2.0.0"
},
"devDependencies": {
"chai": "~3.5.0",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"mocha": "^3.2.0",
"nyc": "^10.2.0"
},
"keywords": [
"conditional",
"filter",
"graph",
"dynamic",
"if",
"where",
"search",
"api",
"input",
"param",
"predicates"
],
"license": "MIT",
"main": "./lib",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/dsfields/spleen-node"
},
"scripts": {
"lint": "eslint ./*",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text --check-coverage --lines 100 --functions 100 --branches 100 mocha --recursive ./test"
}
}