UNPKG

1.33 kBJSONView Raw
1{
2 "name": "scourjs",
3 "description": "Traverse objects and arrays",
4 "version": "0.11.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 "scour-search": "0.3.3",
17 "to-function": "2.0.6"
18 },
19 "devDependencies": {
20 "babel-cli": "6.3.17",
21 "babel-preset-es2015": "6.3.13",
22 "benchmark": "1.0.0",
23 "docpress": "0.6.10",
24 "expect": "1.13.4",
25 "git-update-ghpages": "1.3.0",
26 "istanbul": "0.4.1",
27 "mdx": "0.3.1",
28 "standard": "5.4.1",
29 "tap-spec": "4.1.1",
30 "tape": "4.4.0",
31 "uglifyjs": "2.4.10"
32 },
33 "directories": {
34 "test": "test"
35 },
36 "homepage": "https://github.com/rstacruz/scour#readme",
37 "keywords": [
38 "array",
39 "immutable",
40 "object"
41 ],
42 "license": "MIT",
43 "main": "lib/index.js",
44 "repository": {
45 "type": "git",
46 "url": "git+https://github.com/rstacruz/scour.git"
47 },
48 "scripts": {
49 "build": "babel src --out-dir lib",
50 "coverage": "istanbul cover test/index.js",
51 "prepublish": "make -B update && npm run build",
52 "test": "node test | tap-spec",
53 "test:lint": "standard src/* test/* utilities/*",
54 "watch": "babel -w src --out-dir lib"
55 }
56}