-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.52 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
57
58
59
60
61
62
63
64
65
66
{
"name": "qunit-retry",
"version": "2.3.0",
"description": "Drop in replacement for qunit `test` which retries a failed test.",
"keywords": [
"qunit",
"qunit-plugin",
"test",
"testing",
"retry"
],
"repository": {
"type": "git",
"url": "https://github.com/mrloop/qunit-retry"
},
"license": "ISC",
"author": "mrloop",
"exports": {
"require": "./index.js",
"import": "./main.js",
"default": "./main.js"
},
"main": "index.js",
"module": "main.js",
"types": "./index.d.ts",
"scripts": {
"test": "pnpm test:smoke lint && pnpm test:js && pnpm test:smoke",
"test:smoke": "testem ci",
"test:js": "qunit test/retry.js && qunit test/retry-only.js",
"dev": "qunit --watch",
"lint": "eslint index.js"
},
"dependencies": {
"esm": "^3.2.25"
},
"devDependencies": {
"@release-it-plugins/lerna-changelog": "^7.0.0",
"dotenv": "^8.2.0",
"eslint": "^7.23.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"qunit": "^2.22.0",
"release-it": "^17.10.0",
"testem": "^3.4.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}