-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.2 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
{
"name": "@node-ipc/vanilla-test",
"version": "1.4.15",
"description": "minimal test framework for node, browsers, and electron, anywhere javascript can run",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=12.21.0"
},
"scripts": {
"test": "yarn emulate && node ./test/CI.js",
"start": "yarn emulate && node-http-server port=8000 verbose=true",
"emulate": "copyfiles -V \"./!(node_modules)/*\" \"./**!(node_modules)\" \"./example/node_modules/@node-ipc/vanilla-test/\" && copyfiles -V \"./node_modules/**/*\" \"./example/\" && copyfiles -V \"./!(node_modules)/*\" \"./**!(node_modules)\" \"./test/node_modules/@node-ipc/vanilla-test/\" && copyfiles -V \"./node_modules/**/*\" \"./test/\""
},
"keywords": [
"test",
"vanilla",
"minimal",
"node",
"web",
"browser",
"es6"
],
"author": "Brandon Nozaki Miller",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/node-ipc/vanilla-test.git"
},
"dependencies": {
"@achrinza/strong-type": "1.1.9",
"ansi-colors-es6": "5.0.0"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"node-http-server": "8.1.3"
},
"packageManager": "yarn@3.2.0"
}