@aws/pdk
Version:
All documentation is located at: https://aws.github.io/aws-pdk
48 lines (47 loc) • 1.1 kB
JSON
{
"name": "xml-lexer",
"version": "0.2.2",
"description": "XML Lexer",
"main": "dist/lexer.js",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "babel src --out-dir dist",
"pretest": "npm run build",
"test": "nyc ava test/test.js --verbose",
"prepublish": "npm test",
"report": "nyc report --reporter=html && opn coverage/index.html"
},
"keywords": [
"xml",
"lexer",
"lex",
"sax",
"grammar",
"state machine"
],
"author": "Pedro Ladaria <pedro.ladaria@gmail.com>",
"license": "MIT",
"dependencies": {
"eventemitter3": "^2.0.0"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"nyc": "^8.3.0",
"opn-cli": "^3.1.0",
"rimraf": "^2.5.4"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pladaria/xml-lexer.git"
},
"bugs": {
"url": "https://github.com/pladaria/xml-lexer/issues"
},
"homepage": "https://github.com/pladaria/xml-lexer#readme"
}