-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "vanilla-test",
"version": "1.4.9",
"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": "npm run emulate && node ./test/CI.js",
"start": "npm run emulate && node-http-server port=8000 verbose=true",
"emulate": "npm i && copyfiles -V \"./!(node_modules)/*\" \"./**!(node_modules)\" \"./example/node_modules/vanilla-test/\" && copyfiles -V \"./node_modules/**/*\" \"./example/\" && copyfiles -V \"./!(node_modules)/*\" \"./**!(node_modules)\" \"./test/node_modules/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/RIAEvangelist/vanilla-test.git"
},
"dependencies": {
"ansi-colors-es6": "^5.0.0",
"strong-type": "^1.1.0"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"node-http-server": "^8.1.3"
}
}