forked from crcn/sift.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 965 Bytes
/
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": "sift",
"description": "mongodb query style array filtering",
"version": "5.0.0",
"repository": "crcn/sift.js",
"author": {
"name": "Craig Condon",
"email": "[email protected]",
"url": "http://crcn.io"
},
"license": "MIT",
"engines": {},
"dependencies": {},
"typings": "./index.d.ts",
"devDependencies": {
"benchmark": "^1.0.0",
"bson": "^0.2.18",
"gulp": "^3.9.0",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^0.10.0",
"gulp-jscs": "^1.6.0",
"gulp-jshint": "^1.11.2",
"gulp-mocha": "^2.1.2",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.2.0",
"immutable": "^3.7.6",
"nodangel": "^1.3.8",
"yargs": "^3.15.0"
},
"main": "./sift.js",
"scripts": {
"test": "gulp test-coverage",
"test-coveralls": "gulp test-coveralls",
"tdd": "nodangel --ignore node_modules --watch test --watch sift.js --exec 'npm run test'"
}
}