-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
72 lines (72 loc) · 2.34 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
70
71
72
{
"name": "quibble",
"version": "0.9.2",
"description": "Makes it easy to replace require'd dependencies.",
"homepage": "https://github.com/testdouble/quibble",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"require": "./lib/quibble.js",
"import": "./lib/quibble.mjs",
"types": "./index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "teenytest",
"style": "standard --fix",
"test:esm": "node --loader=quibble ./test/esm-lib/teenytest-proxy.js \"./test/esm-lib/*.test.{mjs,js}\"",
"test:esm-auto-loader": "node test/esm-lib/supports-auto-load.js not || node ./test/esm-lib/teenytest-proxy.js \"./test/esm-lib/*.test.{mjs,js}\"",
"test:no-loader-esm": "node test/esm-lib/supports-auto-load.js || teenytest \"./test/esm-lib/*.no-loader-test.js\" && teenytest \"./test/esm-lib/*.no-loader-test.mjs\"",
"test:example": "cd example && npm it",
"test:example-esm": "cd example-esm && npm it",
"test:example-esm-auto-loader": "node test/esm-lib/supports-auto-load.js not || (cd example-esm && npm i && npm run test-auto-loader)",
"test:smells": "bash ./test/require-smell-test.sh",
"test:ci": "npm test && npm run test:esm && npm run test:no-loader-esm && npm run test:esm-auto-loader && npm run style && npm run test:example && npm run test:example-esm && npm run test:example-esm-auto-loader && npm run test:smells",
"preversion": "git pull --rebase && npm run test:ci",
"postversion": "git push && git push --tags && npm publish"
},
"author": {
"name": "Justin Searls",
"email": "[email protected]",
"url": "http://testdouble.com"
},
"dependencies": {
"lodash": "^4.17.21",
"resolve": "^1.22.8"
},
"devDependencies": {
"core-assert": "^1.0.0",
"is-number": "^7.0.0",
"is-promise": "^4.0.0",
"standard": "^17.1.0",
"teenytest": "^6.0.5",
"teenytest-promise": "^1.0.0"
},
"standard": {
"globals": [
"assert"
],
"ignore": [
"example",
"example-esm"
]
},
"teenytest": {
"plugins": [
"teenytest-promise"
]
},
"bugs": {
"url": "https://github.com/testdouble/quibble/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/testdouble/quibble.git"
},
"engines": {
"node": ">= 0.14.0"
},
"license": "MIT"
}