|
4 | 4 | "description": "BDD-style user interface for Mocha",
|
5 | 5 | "main": "lib/index.js",
|
6 | 6 | "scripts": {
|
7 |
| - "test": "npm run lint", |
8 |
| - "build": "npm run build-node", |
9 |
| - "build-node": "rimraf lib; babel src --out-dir lib", |
| 7 | + "build": "rimraf lib && babel src --out-dir lib", |
| 8 | + "check": "nsp check && npm run deps", |
| 9 | + "deps": "npm run deps:missing && npm run deps:extra", |
| 10 | + "deps:extra": "dependency-check package.json --extra --no-dev --ignore-module rimraf", |
| 11 | + "deps:missing": "dependency-check package.json --missing", |
10 | 12 | "lint": "eslint src/ test/ .*.js",
|
11 |
| - "test-e2e": "npm run test-node-e2e && npm run test-browser-e2e", |
12 |
| - "test-node-e2e": "babel-node node_modules/.bin/_mocha --require test/e2e/fixture.js --recursive test/e2e/", |
13 |
| - "test-browser-e2e": "karma start .karma.conf.js --single-run", |
14 |
| - "publish-please": "publish-please" |
| 13 | + "prepublish": "npm run build", |
| 14 | + "publish-please": "publish-please", |
| 15 | + "test": "npm run lint", |
| 16 | + "test:e2e": "npm run test:e2e:node && npm run test:e2e:browser", |
| 17 | + "test:e2e:browser": "karma start .karma.conf.js --single-run", |
| 18 | + "test:e2e:node": "babel-node node_modules/.bin/_mocha --require test/e2e/fixture.js --recursive test/e2e/" |
15 | 19 | },
|
16 | 20 | "repository": {
|
17 | 21 | "type": "git",
|
|
36 | 40 | ],
|
37 | 41 | "devDependencies": {
|
38 | 42 | "babel-cli": "^6.3.13",
|
39 |
| - "babel-core": "^6.1.2", |
| 43 | + "babel-core": "^6.3.26", |
40 | 44 | "babel-eslint": "^4.1.5",
|
41 | 45 | "babel-istanbul": "^0.5.9",
|
42 | 46 | "babel-preset-es2015": "^6.1.2",
|
43 | 47 | "babelify": "^7.2.0",
|
44 | 48 | "browserify": "^12.0.1",
|
45 | 49 | "browserify-istanbul": "^0.2.1",
|
46 | 50 | "chai": "^3.4.0",
|
47 |
| - "chai-as-promised": "^5.1.0", |
| 51 | + "chai-as-promised": "^5.2.0", |
| 52 | + "dependency-check": "^2.5.1", |
48 | 53 | "eslint": "^1.10.3",
|
49 | 54 | "eslint-config-semistandard": "^5.0.0",
|
50 | 55 | "eslint-config-standard": "^4.4.0",
|
51 |
| - "eslint-plugin-lodash3": "^0.4.0", |
| 56 | + "eslint-plugin-lodash3": "^0.5.0", |
52 | 57 | "eslint-plugin-mocha-only": "0.0.3",
|
53 | 58 | "eslint-plugin-no-class": "^0.1.0",
|
54 | 59 | "eslint-plugin-prototype-chain": "^0.1.0",
|
55 | 60 | "eslint-plugin-standard": "^1.3.1",
|
56 | 61 | "istanbul": "^0.4.1",
|
57 |
| - "js-yaml": "^3.4.3", |
58 |
| - "karma": "^0.13.15", |
| 62 | + "karma": "^0.13.16", |
59 | 63 | "karma-browserify": "^4.4.2",
|
60 |
| - "karma-cli": "^0.1.1", |
| 64 | + "karma-cli": "^0.1.2", |
61 | 65 | "karma-coverage": "^0.5.3",
|
62 | 66 | "karma-mocha": "^0.2.1",
|
63 | 67 | "karma-mocha-reporter": "^1.1.3",
|
64 |
| - "karma-phantomjs2-launcher": "^0.3.2", |
65 |
| - "minifyify": "^7.1.0", |
| 68 | + "karma-phantomjs2-launcher": "^0.4.0", |
66 | 69 | "mocha": "^2.3.4",
|
67 | 70 | "mocha3": "file:../mocha3",
|
| 71 | + "nsp": "^2.2.0", |
68 | 72 | "phantomjs2-ext": "^0.1.0",
|
69 | 73 | "pre-commit": "^1.1.2",
|
70 | 74 | "publish-please": "^1.1.0",
|
|
80 | 84 | "presets": [
|
81 | 85 | "es2015"
|
82 | 86 | ]
|
| 87 | + }, |
| 88 | + "dependencies": { |
| 89 | + "rimraf": "^2.5.0" |
83 | 90 | }
|
84 | 91 | }
|
0 commit comments