Initial commit

This commit is contained in:
pasketti
2026-04-05 16:14:49 -04:00
commit ebee3a5534
14059 changed files with 2588797 additions and 0 deletions

41
node_modules/entities/package.json generated vendored Normal file
View File

@@ -0,0 +1,41 @@
{
"name": "entities",
"version": "1.1.1",
"description": "Encode & decode XML/HTML entities with ease",
"author": "Felix Boehm <me@feedic.com>",
"main": "./index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"mocha": "1",
"mocha-lcov-reporter": "*",
"coveralls": "*",
"istanbul": "*",
"jshint": "2"
},
"repository": {
"type": "git",
"url": "git://github.com/fb55/node-entities.git"
},
"license": "BSD-like",
"jshintConfig": {
"eqeqeq": true,
"freeze": true,
"latedef": "nofunc",
"noarg": true,
"nonbsp": true,
"quotmark": "double",
"undef": true,
"unused": true,
"trailing": true,
"eqnull": true,
"proto": true,
"smarttabs": true,
"node": true,
"globals": {
"describe": true,
"it": true
}
}
}