-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "async-test-util",
"version": "2.5.0",
"description": "Util-functions that are be useful in async tests",
"keywords": [
"async",
"assert",
"test",
"testing",
"util",
"utils",
"mocha",
"karma",
"wait",
"wait-until",
"assert",
"is-promise",
"random",
"jest",
"karma"
],
"main": "./dist/lib/index.js",
"jsnext:main": "./dist/es/index.js",
"module": "./dist/es/index.js",
"types": "./src/index.d.ts",
"scripts": {
"test:node": "npm run build && mocha -b --exit",
"test:browser": "npm run build && karma start ./config/karma.conf.js --single-run",
"test": "npm run test:node && npm run test:browser",
"lint": "eslint src test",
"clear": "rimraf -rf ./dist",
"build:es6": "rimraf -rf dist/es && cross-env NODE_ENV=es6 babel src --out-dir dist/es",
"build:es5": "cross-env NODE_ENV=es5 babel src --out-dir dist/lib",
"build": "npm run clear && npm run build:es6 && npm run build:es5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pubkey/async-test-util.git"
},
"author": "pubkey",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pubkey/async-test-util/issues"
},
"homepage": "https://github.com/pubkey/async-test-util#readme",
"devDependencies": {
"@babel/cli": "7.29.7",
"@babel/core": "7.29.7",
"@babel/plugin-external-helpers": "7.29.7",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-literals": "7.29.7",
"@babel/plugin-transform-member-expression-literals": "7.29.7",
"@babel/plugin-transform-modules-commonjs": "7.29.7",
"@babel/plugin-transform-property-literals": "7.29.7",
"@babel/plugin-transform-runtime": "7.29.7",
"@babel/plugin-transform-spread": "7.29.7",
"@babel/plugin-transform-template-literals": "7.29.7",
"@babel/plugin-transform-typescript": "7.29.7",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.29.7",
"@babel/preset-typescript": "7.29.7",
"@babel/types": "7.29.7",
"assert": "2.1.0",
"cross-env": "10.1.0",
"eslint": "8.57.1",
"karma": "6.4.4",
"karma-babel-preprocessor": "8.0.2",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-detect-browsers": "2.3.3",
"karma-edge-launcher": "0.4.2",
"karma-firefox-launcher": "2.1.3",
"karma-ie-launcher": "1.0.0",
"karma-mocha": "2.0.1",
"karma-opera-launcher": "1.0.0",
"karma-safari-launcher": "1.0.0",
"karma-webpack": "5.0.1",
"mocha": "11.7.6",
"process": "0.11.10",
"rimraf": "6.1.3",
"webpack": "5.108.1"
},
"dependencies": {
"@babel/runtime": "7.29.7",
"@types/clone": "2.1.4",
"clone": "2.1.2",
"deep-equal": "2.2.3",
"is-node": "1.1.1"
},
"browser": {
"./src/require-on-node-only.js": false,
"./dist/es/require-on-node-only.js": false,
"./dist/lib/require-on-node-only.js": false
}
}