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