-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.4 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
75
76
77
78
79
80
81
82
83
84
{
"name": "nodebr-meetup-serverless-api-demo",
"version": "0.0.1",
"author": "Daniel Baptista Dias",
"private": true,
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:danielbdias/nodebr-meetup-serverless-api-demo.git"
},
"license": "MIT",
"scripts": {
"build": "serverless package",
"deploy:service": "serverless deploy",
"debug:graphql": "SLS_DEBUG=* serverless invoke local --function graphql --path graphql-event.json",
"debug:graphiql": "SLS_DEBUG=* serverless invoke local --function graphiql",
"debug:searchTweetByHashtag": "SLS_DEBUG=* serverless invoke local --function searchTweetByHashtag --path searchTweetByHashtag-event.json",
"test": "NODE_ENV=test NODE_PATH=./ mocha \"Domain/**/*.test.js\" \"Infra/**/*.test.js\" --colors --require Tests/support.js --reporter spec",
"test:watch": "yarn test -- --watch",
"coverage": "nyc yarn test",
"coverage:watch": "watch -p \"+(Domain|Infra|Features)/**/*.js\" -c \"nyc yarn test\"",
"lint": "standard -v \"Domain/**/*.js\" \"Infra/**/*.js\" \"Features/**/*.js\"",
"lint:fix": "standard --fix \"Domain/**/*.js\" \"Infra/**/*.js\" \"Features/**/*.js\"",
"lint:watch": "watch -p \"+(Domain|Infra|Features)/**/*.js\" -c \"yarn lint\""
},
"engines": {
"node": "6.10.2",
"npm": "3.10.10"
},
"nyc": {
"statements": 95,
"branches": 95,
"functions": 95,
"lines": 95,
"check-coverage": true,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"node_modules/**/*",
"Domain/**/*.test.js",
"Infra/**/*.test.js",
"Features/**/*.js",
"Fixtures/**/*.js",
"Tests/**/*"
]
},
"standard": {
"globals": [
"describe",
"context",
"it",
"after",
"afterEach",
"before",
"beforeEach"
]
},
"dependencies": {
"axios": "^0.15.2",
"graphql-server-lambda": "^1.0.5",
"graphql": "^0.10.5",
"joi": "^9.1.1",
"serverless": "^1.19.0",
"speck-entity": "^0.1.3",
"twitter-node-client": "^0.0.6",
"uuid": "^3.0.0",
"winston": "^2.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"faker": "^3.1.0",
"lodash": "^4.17.4",
"mocha": "^3.1.1",
"moment": "^2.17.1",
"nyc": "^10.2.0",
"rosie": "^1.6.0",
"sinon": "^2.1.0",
"standard": "^8.3.0",
"watch-cli": "^0.2.1"
}
}