-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "create-node",
"version": "2.0.3",
"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": "xo",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports"
]
},
"xo": {
"env": "browser",
"extends": "xo-lukechilds"
},
"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.25.0",
"babel-cli": "^6.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"coveralls": "^3.0.0",
"eslint-config-xo-lukechilds": "^1.0.0",
"nyc": "^11.0.2",
"window": "^4.1.0",
"xo": "^0.20.1"
}
}