-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.13 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.13 KB
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
82
{
"name": "pineapple",
"version": "0.21.2",
"description": "Make your testing sweet!",
"main": "index.js",
"scripts": {
"prepublish": "npm run build && npm run buildPackage",
"build": "npm run generate:parser",
"buildPackage": "run-script-os",
"buildPackage:win32": "rm -rf dist && esbuild index.js --outfile=dist/cjs/index.js --format=cjs --bundle --packages=external && esbuild index.js --outfile=dist/esm/index.js --format=esm --bundle --packages=external && echo { \"type\": \"module\" } > dist/esm/package.json && echo { \"type\": \"commonjs\" } > dist/cjs/package.json && cd dist && exitzero standard --fix */*.js && tsc ../index.js --declaration --allowJs --emitDeclarationOnly --target ESNext --moduleResolution node",
"buildPackage:default": "rm -rf dist && esbuild index.js --outfile=dist/cjs/index.js --format=cjs --bundle --packages=external && esbuild index.js --outfile=dist/esm/index.js --format=esm --bundle --packages=external && echo '{ \"type\": \"module\" }' > dist/esm/package.json && echo '{ \"type\": \"commonjs\" }' > dist/cjs/package.json && cd dist && exitzero standard --fix */*.js && tsc ../index.js --declaration --allowJs --emitDeclarationOnly --target ESNext --moduleResolution node",
"generate:parser": "peggy --allowed-start-rules Document,Expression --cache --format es -o parser/dsl.js parser/grammar.pegjs && cd parser && exitzero standard --fix *.js && node patch.js",
"test": "c8 --reporter=text --reporter=lcov node cli.js --strict -i \"experimental/*,test/*,*.js\" -t --fuzz-runs 1000 --timeout 2000"
},
"repository": {
"url": "https://github.com/TotalTechGeek/pineapple",
"type": "git"
},
"resolutions": {
"@typescript-eslint/typescript-estree": "5.43.0"
},
"dependencies": {
"@faker-js/faker": "^8.0.2",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-sucrase": "^5.0.1",
"@rollup/plugin-virtual": "^3.0.1",
"ajv": "^8.11.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"commander": "^9.4.1",
"debounce": "^1.2.1",
"dependency-tree": "^8.1.2",
"esbuild": "^0.16.10",
"fast-check": "^3.10.0",
"glob": "^8.0.3",
"jest-diff": "^27.5.1",
"json-difference": "^1.9.1",
"json-logic-engine": "^1.2.6",
"ramda": "^0.28.0",
"ramda-adjunct": "^3.0.0",
"rollup": "^3.19.1",
"tempy": "^2.0.0"
},
"devDependencies": {
"@types/node": "^17.0.25",
"@types/ramda": "^0.27.62",
"c8": "^7.11.2",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"exitzero": "^1.0.1",
"flow-remove-types": "^2.196.3",
"peggy": "^1.2.0",
"run-script-os": "^1.1.6",
"standard": "^16.0.4",
"typescript": "4.8.4"
},
"bin": {
"pineapple": "./cli.js"
},
"keywords": [
"test",
"testing"
],
"c8": {
"exclude": [
"node_modules/**",
"parser/**"
]
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"types": "./index.d.ts",
"author": "Jesse Daniel Mitchell",
"type": "module",
"license": "MIT"
}