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 12, 2016
1 parent ea5e47d commit 12c5e40
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 13 deletions.
2 changes: 0 additions & 2 deletions index.js

This file was deleted.

17 changes: 7 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,17 @@
"tagname",
"w3c"
],
"dependencies": {},
"files": [
"index.js",
"index.json"
],
"repository": {
"type": "git",
"url": "https://github.com/wooorm/mathml-tag-names.git"
},
"repository": "https://github.com/wooorm/mathml-tag-names",
"bugs": "https://github.com/wooorm/mathml-tag-names/issues",
"author": "Titus Wormer <[email protected]> (http://wooorm.com)",
"contributors": [
"Titus Wormer <[email protected]> (http://wooorm.com)"
],
"main": "index.json",
"files": [
"index.json"
],
"dependencies": {},
"devDependencies": {
"bail": "^1.0.0",
"browserify": "^13.0.0",
Expand All @@ -44,7 +41,7 @@
"scripts": {
"build-md": "remark . --quiet --frail",
"build-crawl": "node script/build.js",
"build-bundle": "browserify index.js --bare -s mathML > mathml-tag-names.js",
"build-bundle": "browserify index.json --bare -s mathML > mathml-tag-names.js",
"build-mangle": "esmangle mathml-tag-names.js > mathml-tag-names.min.js",
"build": "npm run build-md && npm run build-bundle && npm run build-mangle",
"lint": "xo",
Expand Down
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/* Dependencies. */
var assert = require('assert');
var test = require('tape');
var mathMLTagNames = require('./index.js');
var mathMLTagNames = require('./');

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

0 comments on commit 12c5e40

Please sign in to comment.