-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
{
"name": "mock-inquirer",
"version": "1.0.3",
"description": "mock anwsers for inquirer prompt questions",
"main": "lib/index.js",
"scripts": {
"lint": "standard --fix && npm-ensure -t deps",
"test": "npm run lint && npm run test-local",
"test-local": "mocha -r thunk-mocha test/**/*.test.js",
"test-cov": "istanbul cover _mocha -r thunk-mocha test/**/*.test.js",
"ci": "npm run lint && npm run test-cov",
"beta": "npm test && git release $npm_package_version && npm publish --tag beta",
"release": "npm test && npm-ensure -t changelog && git release $npm_package_version && npm publish",
"precommit": "standard && npm-ensure -t deps"
},
"ensure": {
"deps": {
"checkDirs": [
"lib/**/*",
"bin/*"
]
}
},
"standard": {
"global": [
"describe",
"it",
"beforeEach",
"afterEach"
],
"ignore": [
"/test"
]
},
"dependencies": {
"inquirer": "^1.2.3",
"mock-require": "^2.0.1"
},
"devDependencies": {
"mocha": "^3.0.2",
"npm-ensure": "^1.0.0",
"husky": "0.x",
"istanbul": "*",
"standard": "^8.2.0",
"thunk-mocha": "^1.0.8"
},
"repository": {
"type": "git",
"url": "https://github.com/yibn2008/mock-inquirer.git"
},
"keywords": [
"mock-inquirer",
"inquirer",
"test",
"mock"
],
"author": "zoujie.wzj",
"license": "MIT"
}