UNPKG

1.48 kBJSONView Raw
1{
2 "name": "scourjs",
3 "description": "Traverse objects and arrays",
4 "version": "0.2.0",
5 "author": "Rico Sta. Cruz <rico@ricostacruz.com>",
6 "babel": {
7 "presets": [
8 "es2015"
9 ]
10 },
11 "bugs": {
12 "url": "https://github.com/rstacruz/scour/issues"
13 },
14 "dependencies": {
15 "object-assign": "4.0.1",
16 "sift": "https://github.com/rstacruz/sift.js/tarball/feature/sift-by-object"
17 },
18 "devDependencies": {
19 "babel": "6.3.13",
20 "babel-preset-es2015": "6.3.13",
21 "babelify": "7.2.0",
22 "benchmark": "1.0.0",
23 "browserify": "12.0.1",
24 "docpress": "0.6.10",
25 "expect": "1.13.4",
26 "git-update-ghpages": "1.3.0",
27 "istanbul": "0.4.1",
28 "mdx": "0.2.3",
29 "mocha": "2.3.4",
30 "mocha-standard": "1.0.0",
31 "standard": "5.4.1",
32 "uglifyjs": "2.4.10",
33 "watchify": "3.6.1"
34 },
35 "directories": {
36 "test": "test"
37 },
38 "homepage": "https://github.com/rstacruz/scour#readme",
39 "keywords": [
40 "array",
41 "immutable",
42 "object"
43 ],
44 "license": "MIT",
45 "main": "index.js",
46 "repository": {
47 "type": "git",
48 "url": "git+https://github.com/rstacruz/scour.git"
49 },
50 "scripts": {
51 "build": "browserify -t babelify --bare -s scour scour.js | uglifyjs -cm > scour.min.js",
52 "coverage": "istanbul cover _mocha -- -R spec",
53 "prepublish": "make -B update && npm run build",
54 "test": "mocha",
55 "watch": "watchify -v -t babelify --bare -s scour scour.js -o 'uglifyjs -cm > scour.min.js'"
56 }
57}