1 | {
|
2 | "name": "@phosphor/commands",
|
3 | "version": "1.7.2",
|
4 | "description": "PhosphorJS - Commands",
|
5 | "homepage": "https://github.com/phosphorjs/phosphor",
|
6 | "bugs": {
|
7 | "url": "https://github.com/phosphorjs/phosphor/issues"
|
8 | },
|
9 | "license": "BSD-3-Clause",
|
10 | "author": "S. Chris Colbert <sccolbert@gmail.com>",
|
11 | "contributors": [
|
12 | "A. Darian <git@darian.af>",
|
13 | "Dave Willmer <dave.willmer@gmail.com>",
|
14 | "S. Chris Colbert <sccolbert@gmail.com>",
|
15 | "Steven Silvester <steven.silvester@gmail.com>"
|
16 | ],
|
17 | "files": [
|
18 | "lib/*.d.ts",
|
19 | "lib/*.js"
|
20 | ],
|
21 | "main": "lib/index.js",
|
22 | "types": "lib/index.d.ts",
|
23 | "directories": {
|
24 | "lib": "lib/"
|
25 | },
|
26 | "repository": {
|
27 | "type": "git",
|
28 | "url": "https://github.com/phosphorjs/phosphor.git"
|
29 | },
|
30 | "scripts": {
|
31 | "build": "tsc --build",
|
32 | "build:test": "tsc --build tests && cd tests && webpack",
|
33 | "clean": "rimraf lib",
|
34 | "clean:test": "rimraf tests/build",
|
35 | "docs": "typedoc --options tdoptions.json src",
|
36 | "test": "npm run test:firefox",
|
37 | "test:chrome": "cd tests && karma start --browsers=Chrome",
|
38 | "test:firefox": "cd tests && karma start --browsers=Firefox",
|
39 | "test:ie": "cd tests && karma start --browsers=IE",
|
40 | "watch": "tsc --build --watch"
|
41 | },
|
42 | "dependencies": {
|
43 | "@phosphor/algorithm": "^1.2.0",
|
44 | "@phosphor/coreutils": "^1.3.1",
|
45 | "@phosphor/disposable": "^1.3.1",
|
46 | "@phosphor/domutils": "^1.1.4",
|
47 | "@phosphor/keyboard": "^1.1.3",
|
48 | "@phosphor/signaling": "^1.3.1"
|
49 | },
|
50 | "devDependencies": {
|
51 | "@types/chai": "^3.4.35",
|
52 | "@types/mocha": "^2.2.39",
|
53 | "chai": "^3.5.0",
|
54 | "es6-promise": "^4.0.5",
|
55 | "karma": "^1.5.0",
|
56 | "karma-chrome-launcher": "^2.0.0",
|
57 | "karma-firefox-launcher": "^1.0.0",
|
58 | "karma-ie-launcher": "^1.0.0",
|
59 | "karma-mocha": "^1.3.0",
|
60 | "karma-mocha-reporter": "^2.2.2",
|
61 | "mocha": "^3.2.0",
|
62 | "rimraf": "^2.5.2",
|
63 | "simulate-event": "^1.4.0",
|
64 | "typedoc": "~0.12.0",
|
65 | "typescript": "~3.0.3",
|
66 | "webpack": "^2.2.1"
|
67 | },
|
68 | "gitHead": "d0b6328d41bf0d1a781a6db589734800ea18401a"
|
69 | }
|