forked from felixjb/testify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.45 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 3.45 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "testify",
"displayName": "Testify",
"version": "1.4.2",
"author": {
"name": "felixjb"
},
"publisher": "felixjb",
"description": "Run JavaScript tests easily using CodeLens",
"license": "MIT",
"categories": [
"Other"
],
"keywords": [
"mocha",
"jest",
"test",
"unit",
"ava"
],
"preview": false,
"icon": "resources/icon.png",
"main": "./out/extension",
"activationEvents": [
"*"
],
"engines": {
"vscode": "^1.18.0"
},
"repository": {
"type": "git",
"url": "https://github.com/felixjb/testify"
},
"bugs": {
"url": "https://github.com/felixjb/testify/issues",
"email": "felixjbcomp@gmail.com"
},
"contributes": {
"commands": [
{
"command": "testify.debug.test",
"title": "Debug Test"
},
{
"command": "testify.run.test",
"title": "Run Test"
}
],
"configuration": [
{
"properties": {
"testify.additionalArgs": {
"default": "",
"description": "CLI args to pass to test runner.",
"scope": "resource",
"type": "string"
},
"testify.envVars": {
"default": {
"NODE_ENV": "test"
},
"description": "Environment variables to set before running a test.",
"scope": "resource",
"type": "object"
},
"testify.skipFiles": {
"default": [],
"description": "Array of glob patterns for script paths to skip.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"testify.testRunnerPath": {
"default": "",
"description": "Path to test runner.",
"scope": "resource",
"type": "string"
},
"testify.testFilePattern": {
"default": "**/test/**/*.{js,ts,jsx,tsx}",
"description": "Testify will only activate when an open file matches the above pattern, defaults to all files inside a 'test' directory.",
"scope": "resource",
"type": "string"
}
}
}
]
},
"lint-staged": {
"*.{ts,json}": [
"prettier --write",
"git add"
],
"*.{ts,}": [
"tslint -c tslint.json",
"git add"
]
},
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"format": "prettier --write src/**/*.{ts,json} package.json",
"lint": "tslint -c tslint.json src/**/*.ts",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"precommit": "lint-staged",
"compile": "tsc --noUnusedParameters --noUnusedLocals -p ./",
"watch": "tsc -watch --noUnusedParameters --noUnusedLocals -p ./",
"vscode:prepublish": "npm run compile",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.54",
"@babel/parser": "^7.0.0-beta.54",
"@babel/plugin-syntax-jsx": "^7.0.0-beta.54",
"@babel/plugin-syntax-typescript": "^7.0.0-beta.54"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"all-contributors-cli": "^5.3.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "1.13.7",
"tslint-config-prettier": "^1.13.0",
"tslint": "^5.10.0",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
}
}