-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.21 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
{
"name": "qunit-wait-for",
"version": "2.0.2",
"description": "Wait for a QUnit assertion",
"author": "Alex LaFroscia <[email protected]>",
"license": "MIT",
"source": "./src/index.ts",
"exports": {
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"files": [
"dist"
],
"keywords": [
"qunit",
"qunit-plugin"
],
"scripts": {
"build": "microbundle",
"fmt": "prettier --write .",
"test": "qunit tests",
"release": "standard-version",
"prepare": "husky install",
"prepublishOnly": "microbundle"
},
"devDependencies": {
"@types/qunit": "^2.9.0",
"husky": "^7.0.1",
"lint-staged": "^12.1.2",
"microbundle": "^0.15.0",
"prettier": "^2.0.2",
"qunit": "^2.9.3",
"standard-version": "^9.0.0",
"testdouble": "^3.13.1",
"testdouble-qunit": "^3.0.2",
"typescript": "^4.0.2"
},
"standard-version": {
"scripts": {
"postchangelog": "prettier --write CHANGELOG.md"
}
},
"lint-staged": {
"*.{ts,json,md,yml}": "prettier --write"
},
"volta": {
"node": "16.13.0",
"yarn": "1.22.4"
}
}