|
5 | 5 | "private": false,
|
6 | 6 | "description": "Run code in Atom!",
|
7 | 7 | "author": "Kyle Kelley <[email protected]>",
|
| 8 | + "repository": "https://github.com/rgbkrk/atom-script", |
| 9 | + "license": "Apache-2.0", |
| 10 | + "engines": { |
| 11 | + "atom": ">=0.174.0" |
| 12 | + }, |
| 13 | + "activationCommands": { |
| 14 | + "atom-text-editor": [ |
| 15 | + "script:run", |
| 16 | + "script:run-by-line-number", |
| 17 | + "script:run-options", |
| 18 | + "script:run-with-profile" |
| 19 | + ] |
| 20 | + }, |
| 21 | + "dependencies": { |
| 22 | + "ansi-to-html": "^0.4.2", |
| 23 | + "atom-message-panel": "1.3.1", |
| 24 | + "atom-space-pen-views": "^2.0.3", |
| 25 | + "babel-preset-env": "^1.6.0", |
| 26 | + "strip-ansi": "^3.0.0", |
| 27 | + "underscore": "^1.8.3", |
| 28 | + "uuid": "^3.0.1" |
| 29 | + }, |
| 30 | + "optionalDependencies": { |
| 31 | + "babel-cli": "^6.26.0", |
| 32 | + "coffeescript": "^2" |
| 33 | + }, |
| 34 | + "devDependencies": { |
| 35 | + "babel-eslint": "^7.1.1", |
| 36 | + "eslint": "^4.18.2", |
| 37 | + "eslint-config-airbnb-base": "^10.0.1", |
| 38 | + "eslint-plugin-import": "^2.2.0", |
| 39 | + "tempy": "^1.0.0" |
| 40 | + }, |
| 41 | + "providedServices": { |
| 42 | + "default-script-runtime": { |
| 43 | + "description": "Provides default runtime that's configurable through Atom editor", |
| 44 | + "versions": { |
| 45 | + "0.1.0": "provideDefaultRuntime" |
| 46 | + } |
| 47 | + }, |
| 48 | + "provide-blank-runtime": { |
| 49 | + "description": "Provides a Runtime instance that's intended to be more programatically configurable", |
| 50 | + "versions": { |
| 51 | + "0.1.0": "provideBlankRuntime" |
| 52 | + } |
| 53 | + } |
| 54 | + }, |
| 55 | + "scripts": { |
| 56 | + "lint": "eslint .", |
| 57 | + "lint:fix": "eslint . --fix", |
| 58 | + "test": "atom test --space" |
| 59 | + }, |
| 60 | + "babel": { |
| 61 | + "presets": [ |
| 62 | + [ |
| 63 | + "env", |
| 64 | + { |
| 65 | + "targets": { |
| 66 | + "node": "current" |
| 67 | + } |
| 68 | + } |
| 69 | + ] |
| 70 | + ] |
| 71 | + }, |
| 72 | + "keywords": [ |
| 73 | + "script", |
| 74 | + "runner", |
| 75 | + "Bash", |
| 76 | + "Behat Feature", |
| 77 | + "Clojure", |
| 78 | + "Coffeescript", |
| 79 | + "CoffeeScript (Literate)", |
| 80 | + "Cucumber (Gherkin)", |
| 81 | + "Elixir", |
| 82 | + "Erlang", |
| 83 | + "F#", |
| 84 | + "FSharp", |
| 85 | + "F*", |
| 86 | + "FStar", |
| 87 | + "Go", |
| 88 | + "Groovy", |
| 89 | + "Haskell", |
| 90 | + "Javascript", |
| 91 | + "Julia", |
| 92 | + "LaTeX", |
| 93 | + "Lua", |
| 94 | + "mongoDB", |
| 95 | + "newLISP", |
| 96 | + "Perl", |
| 97 | + "PHP", |
| 98 | + "PowerShell", |
| 99 | + "Python", |
| 100 | + "RSpec", |
| 101 | + "Ruby", |
| 102 | + "Ruby on Rails", |
| 103 | + "Scala", |
| 104 | + "Swift", |
| 105 | + "run", |
| 106 | + "Applescript", |
| 107 | + "code", |
| 108 | + "LAMMPS" |
| 109 | + ], |
8 | 110 | "contributors": [
|
9 | 111 | {
|
10 | 112 | "name": "Kyle Kelley",
|
11 | 113 |
|
12 | 114 | },
|
| 115 | + { |
| 116 | + "name": "Amin Yahyaabadi", |
| 117 | + |
| 118 | + }, |
13 | 119 | {
|
14 | 120 | "name": "GeneLocklin",
|
15 | 121 |
|
|
278 | 384 | "name": "Bruno Durán",
|
279 | 385 |
|
280 | 386 | }
|
281 |
| - ], |
282 |
| - "repository": "https://github.com/rgbkrk/atom-script", |
283 |
| - "keywords": [ |
284 |
| - "script", |
285 |
| - "runner", |
286 |
| - "Bash", |
287 |
| - "Behat Feature", |
288 |
| - "Clojure", |
289 |
| - "Coffeescript", |
290 |
| - "CoffeeScript (Literate)", |
291 |
| - "Cucumber (Gherkin)", |
292 |
| - "Elixir", |
293 |
| - "Erlang", |
294 |
| - "F#", |
295 |
| - "FSharp", |
296 |
| - "F*", |
297 |
| - "FStar", |
298 |
| - "Go", |
299 |
| - "Groovy", |
300 |
| - "Haskell", |
301 |
| - "Javascript", |
302 |
| - "Julia", |
303 |
| - "LaTeX", |
304 |
| - "Lua", |
305 |
| - "mongoDB", |
306 |
| - "newLISP", |
307 |
| - "Perl", |
308 |
| - "PHP", |
309 |
| - "PowerShell", |
310 |
| - "Python", |
311 |
| - "RSpec", |
312 |
| - "Ruby", |
313 |
| - "Ruby on Rails", |
314 |
| - "Scala", |
315 |
| - "Swift", |
316 |
| - "run", |
317 |
| - "Applescript", |
318 |
| - "code", |
319 |
| - "LAMMPS" |
320 |
| - ], |
321 |
| - "license": "Apache-2.0", |
322 |
| - "engines": { |
323 |
| - "atom": ">=0.174.0" |
324 |
| - }, |
325 |
| - "activationCommands": { |
326 |
| - "atom-text-editor": [ |
327 |
| - "script:run", |
328 |
| - "script:run-by-line-number", |
329 |
| - "script:run-options", |
330 |
| - "script:run-with-profile" |
331 |
| - ] |
332 |
| - }, |
333 |
| - "dependencies": { |
334 |
| - "ansi-to-html": "^0.4.2", |
335 |
| - "atom-message-panel": "1.3.1", |
336 |
| - "atom-space-pen-views": "^2.0.3", |
337 |
| - "babel-preset-env": "^1.6.0", |
338 |
| - "strip-ansi": "^3.0.0", |
339 |
| - "underscore": "^1.8.3", |
340 |
| - "uuid": "^3.0.1" |
341 |
| - }, |
342 |
| - "optionalDependencies": { |
343 |
| - "babel-cli": "^6.26.0", |
344 |
| - "coffeescript": "^2" |
345 |
| - }, |
346 |
| - "devDependencies": { |
347 |
| - "babel-eslint": "^7.1.1", |
348 |
| - "eslint": "^4.18.2", |
349 |
| - "eslint-config-airbnb-base": "^10.0.1", |
350 |
| - "eslint-plugin-import": "^2.2.0", |
351 |
| - "tempy": "^1.0.0" |
352 |
| - }, |
353 |
| - "providedServices": { |
354 |
| - "default-script-runtime": { |
355 |
| - "description": "Provides default runtime that's configurable through Atom editor", |
356 |
| - "versions": { |
357 |
| - "0.1.0": "provideDefaultRuntime" |
358 |
| - } |
359 |
| - }, |
360 |
| - "provide-blank-runtime": { |
361 |
| - "description": "Provides a Runtime instance that's intended to be more programatically configurable", |
362 |
| - "versions": { |
363 |
| - "0.1.0": "provideBlankRuntime" |
364 |
| - } |
365 |
| - } |
366 |
| - }, |
367 |
| - "scripts": { |
368 |
| - "lint": "eslint .", |
369 |
| - "lint:fix": "eslint . --fix", |
370 |
| - "test": "atom test --space" |
371 |
| - }, |
372 |
| - "babel": { |
373 |
| - "presets": [ |
374 |
| - [ |
375 |
| - "env", |
376 |
| - { |
377 |
| - "targets": { |
378 |
| - "node": "current" |
379 |
| - } |
380 |
| - } |
381 |
| - ] |
382 |
| - ] |
383 |
| - } |
| 387 | + ] |
384 | 388 | }
|
0 commit comments