-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 890 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 890 Bytes
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
{
"name": "mocha-test-runner",
"main": "./lib/mocha-test-runner",
"version": "1.0.0",
"description": "Run Mocha tests from within Atom",
"repository": "https://github.com/TabDigital/atom-mocha-test-runner",
"license": "MIT",
"activationCommands": {
"atom-workspace": [
"mocha-test-runner:run",
"mocha-test-runner:debug",
"mocha-test-runner:run-previous",
"mocha-test-runner:debug-previous"
],
".platform-darwin": [
"settings-view:open"
],
".platform-win32": [
"settings-view:open"
]
},
"engines": {
"atom": ">0.50.0"
},
"devDependencies": {
"mocha": "~1.20.1",
"coffee-script": "~1.7.1"
},
"dependencies": {
"ansi-html-stream": "0.0.3",
"atom-space-pen-views": "^2.0.3",
"jsesc": "~0.4.3",
"localeval": "~13.12.11",
"process-tree": "1.0.2",
"tree-kill": "0.0.6"
}
}