-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.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
{
"name": "autocomplete_wallcrawler",
"version": "0.0.2",
"description": "create autosuggestions using the english dictionary",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node test/backendtest.js",
"coverage": "istanbul cover test/*.js && ./node_modules/.bin/istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"nocov": "node test/*.js",
"codeclimate": "CODECLIMATE_REPO_TOKEN=188e867a71e527904efe9e34fc0d57787442a2e39d7ebb02b0ec3616294bc2d3 ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info",
"jshint": "jshint -c .jshintrc --exclude-path .gitignore .",
"start": "node server.js",
"nodemon": "nodemon ./server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/wallcrawler/autocomplete.git"
},
"keywords": [
"autocomplete",
"english",
"dictionary",
"suggestions"
],
"author": "wallcrawler",
"license": "ISC",
"bugs": {
"url": "https://github.com/wallcrawler/autocomplete/issues"
},
"homepage": "https://github.com/wallcrawler/autocomplete",
"devDependencies": {
"codeclimate-test-reporter": "0.0.4",
"istanbul": "^0.3.14",
"jshint": "^2.7.0",
"pre-commit": "^1.0.7"
},
"pre-commit": [
"jshint",
"coverage"
],
"engines": {
"node": ">= 0.10"
},
"dependencies": {
"twit": "^1.1.20",
"pre-commit": "^1.0.7",
"twitter": "^1.2.5",
"jshint": "^2.7.0",
"twitter-node-client": "^0.0.6",
"istanbul": "^0.3.14"
}
}