initial commit

This commit is contained in:
2026-03-22 03:21:45 +02:00
commit 897fea9f4e
15431 changed files with 2548840 additions and 0 deletions

38
node_modules/mixto/package.json generated vendored Normal file
View File

@@ -0,0 +1,38 @@
{
"name": "mixto",
"version": "1.0.0",
"description": "A mixin superclass. Its subclasses have `.extend` and `.includeInto` methods to mix behavior into other objects and classes.",
"main": "lib/mixin",
"scripts": {
"prepublish": "grunt clean coffee lint",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/atom/mixto"
},
"keywords": [
"mixin",
"trait"
],
"bugs": {
"url": "https://github.com/atom/mixto/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/atom/mixto/raw/master/LICENSE.md"
}
],
"devDependencies": {
"coffee-script": "~1.6.3",
"jasmine-focused": "~0.19.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-cli": "~0.1.8",
"grunt": "~0.4.1",
"grunt-shell": "~0.2.2",
"grunt-coffeelint": "0.0.6",
"rimraf": "~2.2.2"
},
"author": "Nathan Sobo"
}