This repository has been archived by the owner on Apr 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.88 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@form8ion/cucumber-esm",
"description": "reproduction of problem using loaders with cucumber on an ESM project",
"license": "MIT",
"version": "0.0.0-semantically-released",
"type": "module",
"files": [
"example.js",
"lib/"
],
"publishConfig": {
"access": "public"
},
"runkitExampleFilename": "./example.js",
"main": "lib/index.es.js",
"sideEffects": false,
"repository": "form8ion/cucumber-esm",
"bugs": "https://github.com/form8ion/cucumber-esm/issues",
"homepage": "https://npm.im/@form8ion/cucumber-esm",
"author": "Matt Travi <[email protected]> (https://matt.travi.org)",
"scripts": {
"test": "npm-run-all --print-label build --parallel lint:* --parallel test:*",
"lint:lockfile": "lockfile-lint",
"lint:js": "eslint . --cache",
"lint:js:fix": "run-s lint:js -- --fix",
"lint:md": "remark . --frail",
"generate:md": "remark . --output",
"pregenerate:md": "run-s build",
"lint:sensitive": "ban",
"prepare": "husky install",
"pretest:integration": "preview",
"lint:gherkin": "gherkin-lint",
"test:integration": "run-s 'test:integration:base -- --profile noWip'",
"test:integration:base": "NODE_OPTIONS=\"--enable-source-maps --loader=testdouble\" DEBUG=any cucumber-js test/integration",
"test:integration:debug": "DEBUG=test run-s test:integration",
"test:integration:wip": "run-s 'test:integration:base -- --profile wip'",
"test:integration:wip:debug": "DEBUG=test run-s 'test:integration:wip'",
"test:integration:focus": "run-s 'test:integration:base -- --profile focus'",
"build:js": "rollup --config",
"watch": "run-s 'build:js -- --watch'",
"clean": "rimraf ./lib",
"prebuild": "run-s clean",
"build": "npm-run-all --print-label --parallel build:*",
"prepack": "run-s build",
"test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
"test:unit:base": "DEBUG=any mocha 'src/**/*-test.js'",
"lint:peer": "npm ls >/dev/null"
},
"devDependencies": {
"@babel/register": "7.16.0",
"@cucumber/cucumber": "8.1.2",
"@form8ion/commitlint-config": "1.0.30",
"@form8ion/eslint-config": "1.8.7",
"@form8ion/eslint-config-cucumber": "1.4.1",
"@form8ion/eslint-config-mocha": "1.2.12",
"@form8ion/remark-lint-preset": "2.1.6",
"@travi/any": "2.0.18",
"babel-plugin-istanbul": "6.1.1",
"ban-sensitive-files": "1.9.16",
"c8": "7.10.0",
"chai": "4.3.4",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"gherkin-lint": "4.2.2",
"husky": "7.0.4",
"lockfile-lint": "4.6.2",
"mocha": "9.1.3",
"mock-fs": "5.1.2",
"npm-run-all": "4.1.5",
"package-preview": "4.0.0",
"remark-cli": "10.0.1",
"remark-toc": "8.0.1",
"remark-usage": "10.0.1",
"rimraf": "3.0.2",
"rollup": "2.60.0",
"rollup-plugin-auto-external": "2.0.0",
"sinon": "12.0.1",
"testdouble": "3.16.3"
}
}