Move JS tools to root directory

This commit is contained in:
SnowyLuma 2021-02-06 21:33:42 +01:00
parent 817657fc84
commit e1f332d632
No known key found for this signature in database
GPG Key ID: 014BEA900E05897F
4 changed files with 63 additions and 0 deletions

View File

@ -7,6 +7,12 @@ updates:
schedule:
interval: "monthly"
- directory: "/"
package-ecosystem: "npm"
schedule:
interval: "monthly"
# Service dependencies
- directory: "/packages/api"
package-ecosystem: "pip"
schedule:

35
package-lock.json generated Normal file
View File

@ -0,0 +1,35 @@
{
"name": "mousey",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "1.0.0",
"license": "AGPL-3.0",
"devDependencies": {
"prettier": "^2.2.1"
}
},
"node_modules/prettier": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz",
"integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==",
"dev": true,
"bin": {
"prettier": "bin-prettier.js"
},
"engines": {
"node": ">=10.13.0"
}
}
},
"dependencies": {
"prettier": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz",
"integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==",
"dev": true
}
}
}

22
package.json Normal file
View File

@ -0,0 +1,22 @@
{
"name": "mousey",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SnowyLuma/Mousey.git"
},
"author": "Lilly Rose Berner <lilly@snowyluma.dev> (https://snowyluma.dev)",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/SnowyLuma/Mousey/issues"
},
"homepage": "https://github.com/SnowyLuma/Mousey#readme",
"devDependencies": {
"prettier": "^2.2.1"
}
}