-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "gherk",
"version": "2.1.1",
"description": "A minimalistic parser for the Gherkin syntax",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Chris Baker <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bakerface/gherk.git"
},
"files": [
"dist"
],
"keywords": [
"gherkin",
"feature",
"scenario",
"given",
"when",
"then"
],
"scripts": {
"prepare": "rollup -c rollup.config.js -i src/index.ts",
"dev": "ts-node src/index.ts",
"lint": "eslint .",
"test": "nyc mocha 'src/**/*.test.*'"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"builtins": "^4.0.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^9.0.1",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"rollup": "^2.52.7",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-node": "^10.0.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
}
}