This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
const {execSync} = require('child_process'); | |
const fs = require('fs'); | |
const path = require('path'); | |
const semver = require('semver'); | |
const {format} = require('util'); | |
const project = require(process.cwd() + '/package.json'); | |
const deps = project.dependencies; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name iichan.hk search | |
// @description iichan.hk search | |
// @author :^) | |
// @version 0.1 | |
// @include http://iichan.hk/* | |
// ==/UserScript== | |
(function() { | |
'use strict'; |