-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 KB
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
{
"name": "twitter-server",
"version": "1.4.0",
"description": "Provides easy Twitter integration. Connects to the Twitter API using OAuth2 and exposes basic endpoints to retrieve tweets and users.",
"main": "src/index.js",
"scripts": {
"test": "standard && npm-check -p && mocha --compilers js:babel-core/register --recursive --reporter spec",
"test-watch": "mocha --compilers js:babel-core/register --watch --recursive --reporter spec",
"start": "node src/index.js --config config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codealchemist/twitter-server.git"
},
"keywords": [
"twitter",
"node"
],
"author": "Alberto Miranda <b3rt.js@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codealchemist/twitter-server/issues"
},
"homepage": "https://github.com/codealchemist/twitter-server#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"npm-check": "^5.2.3",
"standard": "^8.0.0"
},
"dependencies": {
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"express": "^4.14.0",
"minimist": "^1.2.0",
"mocha": "^3.1.2",
"morgan": "^1.7.0",
"oauth": "^0.9.14",
"requestify": "https://github.com/codealchemist/requestify.git",
"winston": "^2.3.0"
},
"standard": {
"globals": [
"describe",
"it",
"beforeEach"
]
},
"engines": {
"node": "6.*"
}
}