UNPKG

2.12 kBJSONView Raw
1{
2 "name": "zora",
3 "version": "3.1.4",
4 "description": "tap test harness for nodejs and browsers",
5 "repository": "github:lorenzofox3/zora",
6 "keywords": [
7 "tap",
8 "test",
9 "node",
10 "browsers",
11 "testing",
12 "tests",
13 "harness",
14 "tap-producer"
15 ],
16 "type": "module",
17 "main": "./dist/bundle/index",
18 "module": "./dist/bundle/module.js",
19 "types": "./dist/declarations/index.d.ts",
20 "files": [
21 "dist/bundle",
22 "dist/declarations"
23 ],
24 "scripts": {
25 "build:clean": "rm -rf ./dist && mkdir -p ./dist/bundle ./dist/declarations",
26 "build:compile": "tsc",
27 "build:bundle": "rollup -c ./rollup/build.js && rollup -c ./rollup/cdn.js",
28 "build": "npm run build:clean && npm run build:compile && npm run build:bundle",
29 "bench:clean": "rm -r ./benchmarks && mkdir -p ./benchmarks/zora/test/ ./benchmarks/ava/test ./benchmarks/jest/test ./benchmarks/mocha/test ./benchmarks/tape/test",
30 "bench:build": "npm run bench:clean && node ./scripts/generate.js",
31 "bench:zora": "time node ./benchmarks/zora/index.js",
32 "bench:ava": "time ava ./benchmarks/ava/test/*.js",
33 "bench:mocha": "time mocha ./benchmarks/mocha/test/",
34 "bench:tape": "time node ./benchmarks/tape/index",
35 "bench:jest": "time jest",
36 "bench:pta": "time pta benchmarks/zora/test/*.js",
37 "test:unit": "rollup -c ./rollup/test.js | node",
38 "test:sample": "node ./test/samples/index.js",
39 "test": "npm run test:unit && npm run test:sample",
40 "dev": "npm run build:compile -- -w"
41 },
42 "author": {
43 "name": "Laurent Renard",
44 "email": "laurent34azerty@gmail.com"
45 },
46 "license": "MIT",
47 "dependencies": {
48 "fast-deep-equal": "^2.0.1"
49 },
50 "devDependencies": {
51 "ava": "^2.4.0",
52 "esm": "^3.2.25",
53 "jest": "^24.9.0",
54 "mocha": "^6.2.2",
55 "pta": "^0.1.0",
56 "rollup": "^1.26.0",
57 "rollup-plugin-commonjs": "^10.1.0",
58 "rollup-plugin-node-resolve": "^5.2.0",
59 "tape": "^4.11.0",
60 "typescript": "^3.6.4"
61 },
62 "jest": {
63 "testRegex": ".*.js",
64 "roots": [
65 "./benchmarks/jest/test"
66 ],
67 "testEnvironment": "node"
68 }
69}