-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.8 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.8 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
{
"name": "codi-test-framework",
"version": "1.0.40-beta",
"description": "A simple test framework for JavaScript",
"type": "module",
"main": "src/_codi.js",
"browser": "src/_codi.browser.js",
"exports": {
".": {
"browser": "./src/_codi.browser.js",
"node": "./src/_codi.js",
"default": "./src/_codi.js"
},
"./browser": "./dist/codi.browser.js"
},
"bin": {
"codi": "cli.js"
},
"scripts": {
"test": "npm run tests",
"tests": "node --experimental-test-module-mocks cli.js tests --returnResults",
"test:web": "node ./tests/webfunction.js",
"test:browser": "node cli.js tests --browser",
"test:all": "npm run tests && npm run test:browser",
"build:browser": "node scripts/build-browser.js",
"build:browser:advanced": "node scripts/build-browser-advanced.js",
"build:browser:esbuild": "node scripts/build-esbuild.js",
"build:esbuild": "node scripts/build-esbuild.js",
"build": "npm run build:esbuild",
"build:legacy": "npm run build:browser",
"dev": "npm run build && npm run test:all",
"prepublishOnly": "npm run build",
"postbuild": "npm run test:browser",
"version": "node cli.js --version",
"clean": "rm -rf dist/*.js dist/*.map",
"check": "npm run build && npm run test:all",
"validate": "node scripts/validate-automation.js",
"validate:ci": "npm run validate && npm run build && npm run test:all"
},
"keywords": [
"test",
"framework",
"javascript"
],
"author": "Rob Hurst",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"figlet": "^1.7.0",
"node-mocks-http": "^1.16.2",
"puppeteer": "^23.0.0",
"undici": "^7.3.0"
},
"devDependencies": {
"@biomejs/biome": "2.0.0-beta.1",
"esbuild": "^0.19.0"
}
}