-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.08 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
{
"name": "@benchristel/taste",
"version": "0.6.0",
"description": "A fast, modular test library for frontend JS",
"keywords": [
"auto",
"ava",
"bdd",
"browser",
"chai",
"es6",
"fast",
"framework",
"hmr",
"instant",
"jasmine",
"jest",
"library",
"mocha",
"modular",
"module",
"modules",
"refresh",
"reload",
"simple",
"snowpack",
"tap",
"tape",
"taste",
"tdd",
"test",
"testing",
"tests",
"vite",
"xunit"
],
"author": "Ben Christel <[email protected]>",
"repository": "https://github.com/benchristel/taste",
"license": "MIT",
"private": false,
"main": "index.js",
"scripts": {
"build": "./tools/build.sh",
"dev": "yarn run vite --port 8080",
"test": "yarn test:types && ./test.js",
"test:types": "tsc --noEmit --skipLibCheck index.d.ts type-tests/test.ts"
},
"devDependencies": {
"esbuild": "0.19.11",
"puppeteer": "^10.2.0",
"typescript": "^5.0.4",
"vite": "^5.0.11"
},
"type": "module",
"types": "./index.d.ts"
}