-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
43 lines (43 loc) · 1.07 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
38
39
40
41
42
43
{
"name": "zazu-file-finder",
"version": "1.1.0",
"description": "A file finder for Zazu.",
"main": "appCache.js",
"keywords": [
"zazu",
"file",
"finder",
"search",
"lookup"
],
"directories": {
"test": "test"
},
"scripts": {
"docker-build": "docker build -t zazu-file-finder .",
"docker-test": "npm run docker-build && docker run zazu-file-finder",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"report": "nyc report --reporter=lcov && echo open 'coverage/lcov-report/index.html'",
"lint": "eslint .",
"test": "nyc tape test | tap-spec"
},
"author": "Tiny Taco Team",
"license": "MIT",
"devDependencies": {
"coveralls": "^2.12.0",
"eslint": "^3.13.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"nyc": "^10.1.2",
"proxyquire": "^1.7.10",
"rewire": "^2.5.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.0"
},
"dependencies": {
"app2png": "^1.0.0",
"fuzzyfind": "^2.0.0",
"mkdirp": "^0.5.1"
}
}