-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
66 lines (66 loc) · 2.73 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
{
"name": "@opuscapita/filemanager-server",
"version": "1.1.13",
"description": "",
"main": "index.js",
"scripts": {
"prepare-demo": "rimraf test-files && mkdirp test-files && cross-env ../../demo-filesystem/populate-demo-fs.sh ./test-files",
"start": "npm run prepare-demo && cross-env NODE_ENV=development node start.js",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"build-api-docs": "rimraf -rf api-docs.tmp && mkdirp api-docs.tmp/source api-docs.tmp/docs && cp -r docs/api-docs api-docs.tmp/source && sed -i s@__env__baseURI__@$SERVER_URL@g api-docs.tmp/source/api-docs/main.raml && raml2html api-docs.tmp/source/api-docs/main.raml > api-docs.tmp/docs/index.html",
"validate-api-docs": "rimraf -rf api-docs.tmp && mkdirp api-docs.tmp/source api-docs.tmp/docs && cp -r docs/api-docs api-docs.tmp/source && sed -i s@__env__baseURI__@$SERVER_URL@g api-docs.tmp/source/api-docs/main.raml && raml-validate api-docs.tmp/source/api-docs/main.raml",
"pretest-restapi": "npm run prepare-demo",
"test-restapi": "pm2 delete 'fmServer'; pm2 start start.js --name 'fmServer' && mocha --require config/test/mocha-setup.js --recursive api-tests/*.spec.js --reporter mocha-multi-reporters --reporter-options configFile=./config/test/reporters.json",
"posttest-restapi": "rimraf test-files",
"build": "node -e \"console.log('Building \"$npm_package_name\" version \"$npm_package_version\"! ')\""
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"base64url": "3.0.0",
"binaryextensions": "2.1.1",
"body-parser": "1.18.3",
"express": "4.16.3",
"express-easy-zip": "1.1.4",
"fs-extra": "7.0.0",
"helmet": "3.13.0",
"isbinaryfile": "3.0.3",
"multer": "1.3.1",
"pdf2json": "1.1.7",
"textextensions": "2.2.0",
"winston": "3.1.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.3",
"babel-plugin-lodash": "3.2.11",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2017": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.26.0",
"chai": "3.5.0",
"cross-env": "5.0.1",
"eslint": "4.17.0",
"eslint-config-opuscapita": "2.0.1",
"eslint-plugin-react": "7.7.0",
"ignore-styles": "5.0.1",
"mkdirp": "0.5.1",
"mocha": "3.4.2",
"mocha-junit-reporter": "1.13.0",
"mocha-multi-reporters": "1.1.7",
"pm2": "3.0.4",
"raml-js-validator": "0.6.1",
"raml2html": "7.1.0",
"rimraf": "2.6.2",
"superagent": "3.8.3"
}
}