Skip to content

Commit

Permalink
fix: clean up deps, remove makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-johnson committed Mar 24, 2017
1 parent 1981932 commit ed38996
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 33 deletions.
24 changes: 0 additions & 24 deletions Makefile

This file was deleted.

23 changes: 15 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,36 @@
"main": "index.js",
"scripts": {
"lint": "eslint src/ test/",
"build": "make clean && make",
"test": "make test",
"clean": "shx rm -rf index.js test.js",
"build": "npm-run-all clean build-lib",
"build-lib": "rollup src/index.js -c > index.js",
"build-test": "rollup test/index.js -c > test.js",
"test": "npm-run-all build-test test-node test-browser",
"test-node": "node test.js",
"test-browser": "browserify test.js --debug | tape-run",
"prepublish": "npm run build",
"autorelease": "autorelease pre && npm publish && autorelease post"
},
"dependencies": {
"immutable": "^3.8.1",
"lodash": "^4.8.2"
"lodash.topath": "^4.5.2"
},
"devDependencies": {
"autorelease": "^1.6.0",
"autorelease-github": "^1.1.1",
"autorelease-travis": "^1.2.1",
"babel-eslint": "^6.0.2",
"babel-eslint": "^7.2.1",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015-rollup": "^1.1.1",
"browserify": "^13.0.0",
"babel-preset-es2015-rollup": "^3.0.0",
"browserify": "^14.1.0",
"eslint": "^3.0.0",
"rollup": "^0.34.0",
"npm-run-all": "^4.0.2",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-json": "^2.0.0",
"shx": "^0.2.2",
"tape": "^4.5.1",
"tape-run": "^2.1.3",
"tape-run": "^3.0.0",
"uglify-js": "^2.6.2"
},
"keywords": [],
Expand Down
2 changes: 1 addition & 1 deletion src/blueprint.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Record } from "immutable";
import { toPath } from "lodash";
import toPath from "lodash.topath";
import Schema from "./schema";
import Field from "./field";

Expand Down

0 comments on commit ed38996

Please sign in to comment.