-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "sieveable",
"version": "0.7.0",
"description": "Sieveable: Searching and filtering Android apps.",
"repository": "sikuli/sieveable",
"homepage": "http://sieveable.io",
"engines": {
"node": "6.x.x",
"npm": "3.x.x"
},
"scripts": {
"build": "gulp",
"test": "mocha",
"lint": "gulp lint",
"start": "node bin/www",
"cover": "istanbul cover _mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"author": "Khalid Alharbi, Tom Yeh",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.8",
"eslint": "^3.1.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.12.0",
"eyes": "^0.1.8",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"istanbul": "^0.4.1",
"mkdirp": "^0.5.1",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"pretty-data": "^0.40.0",
"require-dir": "^0.3.0",
"run-sequence": "^1.1.5",
"supertest": "^1.2.0"
},
"dependencies": {
"bluebird": "^3.3.4",
"body-parser": "^1.15.0",
"chalk": "^1.1.1",
"cheerio": "^0.20.0",
"config": "^1.17.1",
"cors": "^2.7.1",
"express": "^4.13.3",
"graceful-fs": "^4.1.3",
"level": "^1.4.0",
"lodash": "^4.14.0",
"request": "^2.74.0",
"sax": "^1.1.6",
"winston": "^2.2.0",
"winston-daily-rotate-file": "^1.2.0",
"winston-loggly": "^1.3.1",
"xml2js": "^0.4.8",
"xmlbuilder": "^8.2.2",
"xmldom": "^0.1.22"
}
}