You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.5 KiB

{
"name": "create-node",
"version": "1.0.2",
"description": "Converts an HTML string to a DOM node",
"main": "dist/create-node.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "babel -d dist src",
"prebuild:map": "npm run prebuild",
"build:map": "babel --source-maps=true -d dist src",
"pretest": "npm run build:map",
"test": "nyc ava test",
"lint": "eslint src",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports"
]
},
"eslintConfig": {
"extends": "lukechilds",
"rules": {
"semi": "off",
"newline-before-return": "off"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukechilds/create-node.git"
},
"keywords": [
"create",
"html",
"dom",
"node",
"browser"
],
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukechilds/create-node/issues"
},
"homepage": "https://github.com/lukechilds/create-node#readme",
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"coveralls": "^2.11.9",
"eslint": "^3.2.0",
"eslint-config-lukechilds": "^1.3.0",
"jsdom": "^9.1.0",
"node-browser-environment": "^2.0.2",
"nyc": "^7.1.0"
}
}