-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 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
{
"name": "typhonjs-plugin-manager",
"version": "0.2.0",
"description": "Provides a plugin manager that dispatches events to loaded plugins.",
"homepage": "https://github.com/typhonjs-node-plugin/typhonjs-plugin-manager",
"license": "MPL-2.0",
"author": {
"name": "typhonrt"
},
"main": "./dist/PluginManager.js",
"repository": {
"type": "git",
"url": "https://github.com/typhonjs-node-plugin/typhonjs-plugin-manager.git"
},
"maintainers": [
{
"name": "typhonrt",
"email": "support@typhonjs.io",
"url": "https://github.com/typhonrt"
}
],
"dependencies": {
"babel-runtime": "^6.0.0",
"backbone-esnext-events": "<1.0.0",
"typhonjs-object-util": "^0.4.0"
},
"devDependencies": {
"typhonjs-config-eslint": "^0.5.0",
"typhonjs-npm-build-test": "^0.7.0"
},
"scripts": {
"build": "babel-node ./node_modules/typhonjs-npm-scripts-build-babel/scripts/build.js",
"esdoc": "esdoc -c .esdocrc",
"eslint": "eslint .",
"prepublish": "babel-node ./node_modules/typhonjs-npm-scripts-publish/scripts/prepublish.js",
"test": "babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha.js",
"test-coverage": "babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha-istanbul.js"
},
"keywords": [
"typhonjs",
"plugin",
"manager"
],
"files": [
".tjsdoc",
"dist",
"src",
"AUTHORS.md"
],
"directories": {},
"bugs": {
"url": "https://github.com/typhonjs-node-plugin/typhonjs-plugin-manager/issues"
}
}