Skip to content

Commit

Permalink
landscaper: Add a cycle detection script to test process
Browse files Browse the repository at this point in the history
  • Loading branch information
bmomberger-bitovi committed Oct 3, 2017
1 parent 00a65fc commit 4131a9c
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@
"scripts": {
"preversion": "npm test",
"testee": "testee test/test.html --browsers firefox",
"test": "npm run jshint && npm run testee",
"test": "npm run detect-cycle && npm run jshint && npm run testee",
"jshint": "jshint src/. --config",
"release:pre": "npm version pre && npm publish --tag=pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"develop": "can-serve --static --develop --port 8080"
"develop": "can-serve --static --develop --port 8080",
"detect-cycle": "detect-cyclic-packages --ignore done-serve"
},
"main": "can-legacy-view-helpers",
"keywords": [
Expand Down Expand Up @@ -55,13 +56,14 @@
"can-view-parser": "^3.4.0"
},
"devDependencies": {
"detect-cyclic-packages": "^1.1.0",
"documentjs": "^0.5.0",
"donejs-cli": "^1.0.1",
"generator-donejs": "^1.0.5",
"jshint": "^2.9.1",
"steal": "^1.5.2",
"steal-qunit": "^1.0.1",
"steal-tools": "^1.3.3",
"testee": "^0.5.0",
"generator-donejs": "^1.0.5",
"donejs-cli": "^1.0.1"
"testee": "^0.5.0"
}
}

0 comments on commit 4131a9c

Please sign in to comment.