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.

45 lines
1.1 KiB

9 years ago
{
"name": "create-node",
9 years ago
"version": "0.1.0",
9 years ago
"description": "Converts an HTML string to a dom node",
"main": "dist/create-node.js",
"scripts": {
9 years ago
"prebuild": "rm -rf dist",
"build": "babel -d dist src",
"prebuild:map": "npm run prebuild",
"build:map": "babel --source-maps=true -d dist src",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
9 years ago
},
9 years ago
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports"
]
},
9 years ago
"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"
},
9 years ago
"homepage": "https://github.com/lukechilds/create-node#readme",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0"
}
9 years ago
}