Skip to content

Commit

Permalink
Remove index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Nov 7, 2016
1 parent 5a667a1 commit e423489
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
2 changes: 0 additions & 2 deletions index.js

This file was deleted.

19 changes: 8 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,17 @@
"w3c",
"whatwg"
],
"dependencies": {},
"files": [
"index.js",
"index.json"
],
"repository": {
"type": "git",
"url": "https://github.com/wooorm/html-tag-names.git"
},
"repository": "https://github.com/wooorm/html-tag-names",
"bugs": "https://github.com/wooorm/html-tag-names/issues",
"author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
],
"main": "index.js",
"files": [
"index.json"
],
"dependencies": {},
"devDependencies": {
"bail": "^1.0.0",
"browserify": "^13.0.0",
Expand All @@ -43,11 +40,11 @@
"scripts": {
"build-md": "remark . --quiet --frail",
"build-crawl": "node script/build.js",
"build-bundle": "browserify index.js --bare -s htmlTagNames > html-tag-names.js",
"build-bundle": "browserify index.json --bare -s htmlTagNames > html-tag-names.js",
"build-mangle": "esmangle html-tag-names.js > html-tag-names.min.js",
"build": "npm run build-md && npm run build-bundle && npm run build-mangle",
"lint": "xo",
"test-api": "node test.js",
"test-api": "node test",
"test": "npm run build && npm run lint && npm run test-api"
},
"xo": {
Expand Down
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/* Dependencies. */
var test = require('tape');
var htmlTagNames = require('./index.js');
var htmlTagNames = require('./');

/* Tests. */
test('htmlTagNames', function (t) {
Expand Down

0 comments on commit e423489

Please sign in to comment.