-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.7 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
{
"name": "jest-gauge",
"description": "Write executable acceptance tests with Jest, in your mother tongue, just loosely structured in Markdown.",
"version": "0.0.9",
"license": "BSD-3-Clause",
"author": "@tnzk",
"type": "module",
"sideEffects": false,
"scripts": {
"test:clean": "npx jest --clearCache",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "npx jest",
"pretest:e2e": "npm run build",
"test:e2e": "npx jest --config jest.example.config.mjs",
"typecheck": "tsc -p . --noEmit",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "npx esbuild src/index.ts --format=esm --platform=node --bundle --outfile=./dist/index.mjs",
"build:cjs": "npx esbuild src/index.ts --format=cjs --platform=node --bundle --outfile=./dist/index.cjs",
"prepublish": "npm run build",
"analysis": "npm run build:esm -- --metafile='analysis.json'",
"package-check": "npx package-check"
},
"dependencies": {
"markdown-it": "^12.0.6",
"markdown-it-ast": "0.0.1"
},
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@types/jest": "^26.0.23",
"@types/markdown-it": "^12.0.1",
"esbuild": "^0.12.1",
"esbuild-jest": "^0.5.0",
"jest": "^26.6.3",
"taiko": "^1.2.5"
},
"main": "./dist/index.cjs",
"module": "./dist/index.ms",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/tnzk/jest-gauge"
},
"files": [
"dist/index.cjs",
"dist/index.mjs",
"src/@types/jest-gauge.d.ts"
],
"types": "src/@types/jest-gauge.d.ts",
"keywords": [
"testing",
"gauge",
"jest",
"atdd"
]
}