-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "phosphor-messaging",
"version": "1.0.5",
"description": "A module for inter-object message passing.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"dependencies": {
"phosphor-queue": "^1.0.4"
},
"devDependencies": {
"coveralls": "^2.11.4",
"expect.js": "^0.3.1",
"istanbul": "^0.3.19",
"mocha": "^2.2.5",
"rimraf": "^2.4.2",
"typedoc": "^0.3.11",
"typescript": "^1.6.2"
},
"scripts": {
"clean": "rimraf lib && rimraf test/build && rimraf test/coverage",
"build:src": "tsc --project src",
"build:test": "tsc --project test/src",
"build": "npm run build:src && npm run build:test",
"docs": "rimraf docs/api && typedoc --options scripts/tdoptions.json",
"prepublish": "npm run build",
"test": "mocha test/build/index.js",
"test:coverage": "istanbul cover --dir test/coverage node_modules/mocha/bin/_mocha -- test/build/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/phosphorjs/phosphor-messaging.git"
},
"files": [
"lib/index.js",
"lib/index.d.ts"
],
"keywords": [
"message",
"messaging"
],
"author": "S. Chris Colbert <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/phosphorjs/phosphor-messaging/issues"
},
"homepage": "https://github.com/phosphorjs/phosphor-messaging"
}