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.

55 lines
1.3 KiB

{
"name": "create-node",
"version": "1.0.1",
"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",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports"
]
},
"ava": {
"require": [
"./test/helpers/setup-browser-env.js"
]
},
"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.14.0",
"babel-cli": "^6.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"coveralls": "^2.11.9",
"jsdom": "^9.1.0",
"nyc": "^6.4.4"
}
}