Browse Source

updated npm modified files

master
ritfsaecdaq 6 years ago
parent
commit
1f8f72d80d
5 changed files with 3049 additions and 0 deletions
  1. BIN
      .DS_Store
  2. +39
    -0
      googletrendsgame/package-lock.json
  3. +7
    -0
      googletrendsgame/server/trendsTest.js
  4. +3
    -0
      googletrendsgame/server/utilTest.js
  5. +3000
    -0
      googletrendsgame/word_selection/words.txt

BIN
.DS_Store View File


+ 39
- 0
googletrendsgame/package-lock.json View File

@ -0,0 +1,39 @@
{
"name": "googletrendsgame",
"version": "0.1.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"asap": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
"integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
},
"async": {
"version": "2.6.0",
"resolved": "https://registry.npmjs.org/async/-/async-2.6.0.tgz",
"integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==",
"requires": {
"lodash": "4.17.4"
}
},
"google-trends-api": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/google-trends-api/-/google-trends-api-4.4.0.tgz",
"integrity": "sha512-x5JF9BB8drLYuoq9nUYjFFAQnO6wcHlujSFATAAvOQw5H/VLTPfXA4C8F+g7RLJYk4+Mzf65CtxHKo28fedfUA=="
},
"lodash": {
"version": "4.17.4",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4="
},
"promise": {
"version": "8.0.1",
"resolved": "https://registry.npmjs.org/promise/-/promise-8.0.1.tgz",
"integrity": "sha1-5F1osAoXZHttpxG/he1u1HII9FA=",
"requires": {
"asap": "2.0.6"
}
}
}
}

+ 7
- 0
googletrendsgame/server/trendsTest.js View File

@ -0,0 +1,7 @@
const trends = require('./trendsAPI.js');
trends.getYearStats('bitcoin').then(function(data){
data.forEach(function(element){
console.log(element);
});
});

+ 3
- 0
googletrendsgame/server/utilTest.js View File

@ -0,0 +1,3 @@
const util = require('./utils');
console.log(util.getRandomWords(100));

+ 3000
- 0
googletrendsgame/word_selection/words.txt
File diff suppressed because it is too large
View File


Loading…
Cancel
Save