Skip to content

Commit e50e081

Browse files
committed
Remove index.js
1 parent 04ffd55 commit e50e081

File tree

3 files changed

+8
-25
lines changed

3 files changed

+8
-25
lines changed

index.js

Lines changed: 0 additions & 14 deletions
This file was deleted.

package.json

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,17 @@
1313
"w3c",
1414
"whatwg"
1515
],
16-
"dependencies": {},
17-
"files": [
18-
"index.js",
19-
"index.json"
20-
],
21-
"repository": {
22-
"type": "git",
23-
"url": "https://github.com/wooorm/html-void-elements.git"
24-
},
16+
"repository": "https://github.com/wooorm/html-void-elements",
2517
"bugs": "https://github.com/wooorm/html-void-elements/issues",
2618
"author": "Titus Wormer <[email protected]> (http://wooorm.com)",
2719
"contributors": [
2820
"Titus Wormer <[email protected]> (http://wooorm.com)"
2921
],
22+
"main": "index.js",
23+
"files": [
24+
"index.json"
25+
],
26+
"dependencies": {},
3027
"devDependencies": {
3128
"bail": "^1.0.0",
3229
"browserify": "^13.0.0",
@@ -44,7 +41,7 @@
4441
"scripts": {
4542
"build-md": "remark . --quiet --frail",
4643
"build-crawl": "node script/build.js",
47-
"build-bundle": "browserify index.js --bare -s htmlVoidElements > html-void-elements.js",
44+
"build-bundle": "browserify index.json --bare -s htmlVoidElements > html-void-elements.js",
4845
"build-mangle": "esmangle html-void-elements.js > html-void-elements.min.js",
4946
"build": "npm run build-md && npm run build-bundle && npm run build-mangle",
5047
"lint": "xo",

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
/* Module dependencies. */
1414
var test = require('tape');
15-
var htmlVoidElements = require('./index.js');
15+
var htmlVoidElements = require('./');
1616

1717
/* Tests. */
1818
test('htmlVoidElements', function (t) {

0 commit comments

Comments
 (0)