This repository has been archived by the owner on Oct 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.5 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
81
{
"name": "@cucumber/suggest",
"version": "0.0.6",
"description": "Library for suggesting steps",
"type": "module",
"main": "dist/cjs/src/index.js",
"types": "dist/cjs/src/index.d.ts",
"files": [
"dist/cjs",
"dist/esm"
],
"module": "dist/esm/src/index.js",
"jsnext:main": "dist/esm/src/index.js",
"exports": {
".": {
"import": "./dist/esm/src/index.js",
"require": "./dist/cjs/src/index.js"
}
},
"scripts": {
"build:cjs": "tsc --build tsconfig.build-cjs.json && cp package.cjs.json dist/cjs/package.json",
"build:esm": "tsc --build tsconfig.build-esm.json",
"build": "npm run build:cjs && npm run build:esm",
"test": "mocha && npm run test:cjs",
"test:cjs": "npm run build:cjs && mocha --no-config dist/cjs/test",
"cucumber": "cucumber-js",
"stryker": "stryker run",
"prepublishOnly": "npm run build",
"eslint-fix": "eslint --ext ts,tsx --max-warnings 0 --fix src test features",
"eslint": "eslint --ext ts,tsx --max-warnings 0 src test features",
"upgrade": "npm-check-updates --upgrade",
"build-wasm": "npx tree-sitter build-wasm node_modules/tree-sitter-java"
},
"repository": {
"type": "git",
"url": "git://github.com/cucumber/suggest.git"
},
"keywords": [
"cucumber",
"suggest",
"autocomplete"
],
"author": "Cucumber Limited <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cucumber/common/issues"
},
"homepage": "https://github.com/cucumber/common#readme",
"devDependencies": {
"@cucumber/cucumber": "7.3.1",
"@stryker-mutator/core": "5.4.1",
"@stryker-mutator/mocha-runner": "5.4.1",
"@stryker-mutator/typescript-checker": "^5.4.1",
"@types/mocha": "9.0.0",
"@types/node": "16.10.3",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"eslint": "8.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"mocha": "9.1.2",
"npm-check-updates": "11.8.5",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"ts-node": "10.3.0",
"typescript": "4.4.4",
"txtgen": "2.2.8",
"tree-sitter-cli": "0.20.0",
"tree-sitter-java": "0.19.1"
},
"dependencies": {
"@types/js-search": "1.4.0",
"@cucumber/cucumber-expressions": "^14.0.0",
"fuse.js": "6.4.6",
"js-search": "2.0.0",
"web-tree-sitter": "0.19.4"
}
}