-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.8 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
74
{
"name": "espelho-politico",
"version": "1.0.0",
"description": "Project to help brazilian citizens discover what the parliamentarians are doing and judge their behaviors",
"main": "index.js",
"engines": {
"node": "6.9.2"
},
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "node server/server.js",
"client": "cd client && npm start",
"server:test": "NODE_ENV=test nyc mocha --opts .mocharc",
"client:test": "cd client && npm test",
"client:build": "cd client && npm run build",
"deploy": "./scripts/deploy.sh",
"parser": "node parser/parser.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EspelhoPolitico/espelhopolitico.git"
},
"keywords": [
"politics",
"social",
"participation",
"Brazil"
],
"author": "Organização Espelho Politco",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/EspelhoPolitico/espelhopolitico/issues"
},
"homepage": "https://github.com/EspelhoPolitico/espelhopolitico#readme",
"nyc": {
"lines": 50,
"statements": 50,
"functions": 50,
"branches": 50,
"include": [
"server/**/*.js"
],
"exclude": [
"server/tests"
],
"reporter": [
"lcov",
"text-summary",
"html"
],
"cache": true,
"all": true,
"check-coverage": true
},
"dependencies": {
"axios": "0.15.3",
"body-parser": "1.15.2",
"express": "4.14.0",
"mongodb": "2.2.12",
"mongoose": "4.7.1",
"soap": "0.18.0"
},
"devDependencies": {
"babel-core": "6.21.0",
"babel-preset-es2015": "6.18.0",
"babel-register": "6.18.0",
"concurrently": "3.1.0",
"expect": "1.20.2",
"mocha": "3.2.0",
"nodemon": "1.11.0",
"nyc": "10.0.0",
"supertest": "2.0.1"
}
}