-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "async-boolean-expression-evaluator",
"version": "2.0.0",
"description": "Evaluates a boolean expression such as `{or: ['a', 'b']}` by passing each operand into an asynchronous iterator to compute the result.",
"main": "./lib/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha -b --recursive",
"prepublish": "npm prune && npm test",
"docs": "./node_modules/.bin/jsdoc2md \"./lib/**/*.js\" --example-lang js > ./API.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoefficientIO/async-boolean-expression-evaluator.git"
},
"keywords": [
"async",
"boolean",
"expression",
"evaluator"
],
"author": "Matt Miller",
"license": "MIT",
"bugs": {
"url": "https://github.com/CoefficientIO/async-boolean-expression-evaluator/issues"
},
"homepage": "https://github.com/CoefficientIO/async-boolean-expression-evaluator#readme",
"devDependencies": {
"esdoc": "^1.0.2",
"jsdoc-to-markdown": "^3.0.0",
"mocha": "^3.5.3",
"should": "^13.0.1",
"sinon": "^3.3.0"
},
"dependencies": {
"async": "^2.5.0"
}
}