1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "xmldoc",
- "description": "A lightweight XML Document class for JavaScript.",
- "author": {
- "name": "Nick Farina",
- "email": "nfarina@gmail.com",
- "url": "http://nfarina.com"
- },
- "version": "1.2.0",
- "main": "./index",
- "scripts": {
- "test": "tap test/*.js",
- "coverage": "npm test -- --cov --coverage-report=html"
- },
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": "git://github.com/nfarina/xmldoc.git"
- },
- "contributors": [
- {
- "name": "Nick Farina",
- "email": "nfarina@gmail.com"
- },
- {
- "name": "Caleb Meredith",
- "email": "calebmeredith8@gmail.com"
- }
- ],
- "readmeFilename": "README.md",
- "devDependencies": {
- "prettier": "^2.7.1",
- "tap": "^16.3.0"
- },
- "dependencies": {
- "sax": "^1.2.4"
- }
- }
|