|
21 | 21 | "scripts": { |
22 | 22 | "pretest": "run-s build", |
23 | 23 | "test": "npm-run-all --print-label --parallel lint:* --parallel test:*", |
24 | | - "lint:lockfile": "lockfile-lint", |
| 24 | + "lint:engines": "ls-engines", |
| 25 | + "lint:gherkin": "gherkin-lint", |
25 | 26 | "lint:js": "eslint . --cache", |
26 | 27 | "lint:js:fix": "run-s 'lint:js -- --fix'", |
27 | | - "temp-disabled:lint:md": "remark . --frail", |
28 | | - "lint:sensitive": "ban", |
| 28 | + "lint:lockfile": "lockfile-lint", |
29 | 29 | "lint:peer": "npm ls >/dev/null", |
30 | | - "lint:engines": "ls-engines", |
31 | 30 | "lint:publish": "publint --strict", |
32 | | - "generate:md": "remark . --output", |
33 | | - "pregenerate:md": "run-s build", |
34 | | - "prepare": "husky install", |
35 | | - "lint:gherkin": "gherkin-lint", |
36 | | - "pretest:integration:base": "run-s build", |
| 31 | + "lint:sensitive": "ban", |
| 32 | + "test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base", |
| 33 | + "test:unit:base": "DEBUG=any vitest run", |
37 | 34 | "test:integration": "run-s 'test:integration:base -- --profile noWip'", |
| 35 | + "pretest:integration:base": "run-s build", |
38 | 36 | "test:integration:base": "NODE_OPTIONS=--enable-source-maps DEBUG=any cucumber-js test/integration", |
39 | 37 | "test:integration:debug": "DEBUG=test run-s test:integration", |
| 38 | + "test:integration:focus": "run-s 'test:integration:base -- --profile focus'", |
40 | 39 | "test:integration:wip": "run-s 'test:integration:base -- --profile wip'", |
41 | 40 | "test:integration:wip:debug": "DEBUG=test run-s 'test:integration:wip'", |
42 | | - "test:integration:focus": "run-s 'test:integration:base -- --profile focus'", |
43 | | - "clean": "rimraf ./lib", |
44 | | - "prebuild": "run-s clean", |
45 | 41 | "build": "npm-run-all --print-label --parallel build:*", |
46 | 42 | "build:js": "rollup --config", |
47 | | - "watch": "run-s 'build:js -- --watch'", |
| 43 | + "clean": "rimraf ./lib", |
| 44 | + "pregenerate:md": "run-s build", |
| 45 | + "generate:md": "remark . --output", |
| 46 | + "prebuild": "run-s clean", |
48 | 47 | "prepack": "run-s build", |
49 | | - "test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base", |
50 | | - "test:unit:base": "DEBUG=any vitest run" |
| 48 | + "prepare": "husky", |
| 49 | + "temp-disabled:lint:md": "remark . --frail", |
| 50 | + "watch": "run-s 'build:js -- --watch'" |
51 | 51 | }, |
52 | 52 | "files": [ |
53 | 53 | "example.js", |
|
0 commit comments