package.json
1 { 2 "name": "sax", 3 "description": "An evented streaming XML parser in JavaScript", 4 "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)", 5 "version": "1.2.1", 6 "main": "lib/sax.js", 7 "license": "ISC", 8 "scripts": { 9 "test": "tap test/*.js --cov", 10 "posttest": "standard -F test/*.js lib/*.js" 11 }, 12 "repository": "git://github.com/isaacs/sax-js.git", 13 "files": [ 14 "lib/sax.js", 15 "LICENSE", 16 "LICENSE-W3C.html", 17 "README.md" 18 ], 19 "devDependencies": { 20 "standard": "^5.3.1", 21 "tap": "^5.2.0" 22 } 23 }