-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.7 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
67
68
69
{
"name": "testdouble-qunit",
"version": "3.0.3",
"description": "Verify testdouble stubs with QUnit",
"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",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"testdouble",
"qunit"
],
"license": "MIT",
"author": "Alex LaFroscia <[email protected]>",
"directories": {
"test": "tests"
},
"homepage": "https://alexlafroscia.github.io/testdouble-qunit",
"repository": "https://github.com/alexlafroscia/testdouble-qunit/tree/master/packages/testdouble-qunit",
"scripts": {
"build": "microbundle",
"lint": "eslint . --ext .js,.ts",
"typecheck": "tsc --noEmit src/index.ts",
"pretest": "microbundle",
"test": "qunit",
"release": "standard-version",
"prepare": "husky install",
"prepublishOnly": "microbundle"
},
"devDependencies": {
"@movable/eslint-config": "^0.6.9",
"@movable/eslint-config-typescript": "^1.0.1",
"@movable/prettier-config": "^0.3.6",
"@types/qunit": "^2.11.1",
"husky": "7",
"lint-staged": "^12.1.2",
"microbundle": "^0.15.0",
"qunit": "^2.14.0",
"standard-version": "^9.1.0",
"testdouble": "^3.16.1",
"typescript": "^4.1.3"
},
"volta": {
"node": "14.15.4",
"yarn": "1.22.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.yml": "prettier --write"
},
"standard-version": {
"scripts": {
"postchangelog": "prettier --write CHANGELOG.md"
}
}
}