-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.54 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
{
"name": "ngeo-qs",
"version": "0.0.1",
"description": "Ngeo Light Query Server",
"main": "index.js",
"dependencies": {
"app-module-path": "^2.2.0",
"body-parser": "^1.16.0",
"errorhandler": "^1.5.0",
"express": "^4.14.1",
"http": "0.0.0",
"https": "^1.0.0",
"lodash": "^4.17.4",
"method-override": "^2.3.7",
"mongodb": "^2.2.24",
"promise": "^7.1.1",
"request": "^2.79.0",
"routes": "^2.1.0",
"winston": "^2.3.1",
"xml2js-expat": "^0.2.2"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"nock": "^9.0.6",
"nodemon": "^1.11.0",
"should": "^11.2.0",
"supertest": "^3.0.0"
},
"scripts": {
"pretest": "mongod --config ./.mongodb/conf/mongod.conf --fork",
"test": "NODE_ENV=test node ./node_modules/mocha/bin/mocha \"src/**/*.test.js\" --reporter spec",
"posttest": "mongo admin --eval 'db.shutdownServer()' > /dev/null",
"precoverage": "mongod --config ./.mongodb/conf/mongod.conf --fork",
"coverage": "NODE_ENV=test istanbul cover --report html ./node_modules/mocha/bin/_mocha \"src/**/*.test.js\" -- -R spec",
"postcoverage": "mongo admin --eval 'db.shutdownServer()' > /dev/null",
"prestart": "mongod --config ./.mongodb/conf/mongod.conf --fork",
"start": "NODE_ENV=production node src/app.js",
"stop": "mongo admin --eval 'db.shutdownServer()' > /dev/null",
"prestart-dev": "mongod --config ./.mongodb/conf/mongod.conf --fork",
"start-dev": "NODE_ENV=development ./node_modules/.bin/nodemon src/app.js",
"stop-dev": "mongo admin --eval 'db.shutdownServer()' > /dev/null",
"prestart-windows": "net start MongoDB",
"start-windows": "set NODE_ENV=production&&node src/app.js",
"stop-windows": "net stop MongoDB",
"prestart-windows-dev": "net start MongoDB",
"start-windows-dev": "set NODE_ENV=development",
"poststart-windows-dev": "./node_modules/.bin/nodemon src/app.js",
"stop-windows-dev": "net stop MongoDB",
"pretest-windows": "net start MongoDB",
"test-windows": "set NODE_ENV=test&&node ./node_modules/mocha/bin/mocha src/**/*.test.js --reporter spec",
"posttest-windows": "net stop MongoDB",
"precoverage-windows": "net start MongoDB",
"coverage-windows": "set NODE_ENV=test&&istanbul cover --report html ./node_modules/mocha/bin/_mocha src/**/*.test.js -- -R spec",
"postcoverage-windows": "net stop MongoDB"
},
"repository": {
"type": "git",
"url": "https://github.com/TPZF/ngEO-LWS.git"
},
"author": "Telespazio FR",
"license": "MIT"
}