-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.05 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "proselytize",
"version": "1.0.0",
"description": "PDF and HTML document-to-text conversion service",
"main": "server.js",
"scripts": {
"build": "gulp build",
"start": "NODE_ENV=production node server-start.js",
"start:test": "NODE_ENV=test node server-start.js",
"test": "mocha -r test/test-helper.js --compilers js:babel-core/register --recursive test",
"test:watch": "mocha -w -r test/test-helper.js --compilers js:babel-core/register --recursive test",
"lint": "eslint .",
"lint:watch": "watch 'npm run lint' ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/roodrallec/proselytize.git"
},
"keywords": [
"pdf",
"html",
"text",
"conversion",
"queue"
],
"author": "Jorge Alexander",
"license": "MIT",
"bugs": {
"url": "https://github.com/roodrallec/proselytize/issues"
},
"homepage": "https://github.com/roodrallec/proselytize#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-http": "^3.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"mocha": "^3.2.0",
"protractor": "^5.1.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0"
},
"dependencies": {
"babel-core": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"babel-register": "^6.24.0",
"body-parser": "^1.17.1",
"browser-sync": "^2.18.8",
"connect-multiparty": "^2.0.0",
"del": "^2.2.2",
"express": "^4.15.2",
"gulp": "^3.9.1",
"gulp-cache": "^0.4.6",
"gulp-cssnano": "^2.1.2",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^3.2.0",
"gulp-sass": "^3.1.0",
"gulp-uglify": "^2.1.2",
"gulp-useref": "^3.1.2",
"method-override": "^2.3.8",
"mongoose": "^4.9.2",
"morgan": "^1.8.1",
"multipart": "^0.1.5",
"node-yaml-config": "0.0.4",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"run-sequence": "^1.2.2",
"winston": "^2.3.1"
}
}