Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
bcherny committed Nov 15, 2016
1 parent 0806e30 commit 1d9851f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
@@ -1,5 +1,6 @@
.DS_Store
node_modules
node_modules/
npm-debug.log
*.js
*.map
*.d.ts
16 changes: 10 additions & 6 deletions package.json
@@ -1,18 +1,22 @@
{
"name": "tslint-no-circular-imports",
"version": "0.0.3",
"version": "0.0.4",
"description": "TSLint plugin to detect and warn about cicular imports",
"main": "./tslint-no-circular-imports.json",
"main": "tslint-no-circular-imports.json",
"scripts": {
"build": "npm run build-sources && npm test",
"build-sources": "tsc -p ./tsconfig.json",
"build-tests": "tsc -p ./tsconfig.test.json",
"watch": "tsc -p ./tsconfig.json -w & tsc -p ./tsconfig.test.json -w",
"test": "npm run build-tests && node ./test/test.js",
"build-sources": "tsc -p tsconfig.json",
"build-tests": "tsc -p tsconfig.test.json",
"watch": "tsc -p tsconfig.json -w & tsc -p tsconfig.test.json -w",
"test": "npm run build-tests && node test/test.js",
"prepublish": "npm run build"
},
"author": "Boris Cherny <boris@performancejs.com> (http://performancejs.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bcherny/tslint-no-circular-imports.git"
},
"dependencies": {
"@types/node": "^6.0.47",
"tslint": "^3.15.1",
Expand Down

0 comments on commit 1d9851f

Please sign in to comment.