-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.97 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
{
"name": "wp-plugin-ss",
"version": "0.3.1",
"scripts": {
"build": "npm run-script lint && npm run-script test-cov",
"test": ". ./bin/env.example && ./node_modules/mocha/bin/mocha --timeout 5000 --check-leaks test/ --recursive",
"test-cov": ". ./bin/env.example && ./node_modules/istanbul/lib/cli.js cover --include-all-sources true node_modules/mocha/bin/_mocha -- --reporter dot --timeout 5000 --check-leaks test/ --recursive",
"lint": "./node_modules/eslint/bin/eslint.js **/*.js",
"start": "node --max-old-space_size=512 ./bin/www",
"queue-results-pages": ". ./bin/env.example && node -e 'require(\"./bin/queue-results-pages\")().then(function(){process.exit(0)})'",
"work-results-pages": ". ./bin/env.example && node -e 'require(\"./bin/results-page-worker\")().then(function(){process.exit(0)})'"
},
"keywords": [
"wordpress-plugin",
"nodejs",
"api",
"wordpress-plugin-search"
],
"bin": {
"wp-plugin-ss": "bin/www"
},
"license": "MIT",
"dependencies": {
"body-parser": "~1.13.2",
"cheerio": "^1.0.0-rc.2",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "~4.13.1",
"express-validator": "^3.2.0",
"jade": "~1.11.0",
"mongodb": "^2.2.30",
"morgan": "~1.6.1",
"redis": "^2.7.1",
"serve-favicon": "~2.3.0",
"swagger-node-express": "^2.1.3",
"swagger-ui-express": "^2.0.1",
"winston": "^2.3.1"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsdoc": "^0.3.2",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsdoc": "^3.1.1",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"mock-require": "^2.0.2",
"mongo-mock": "^2.4.1",
"nock": "^9.0.13",
"redis-mock": "^0.17.1",
"should": "^11.2.1",
"supertest": "^3.0.0"
}
}