-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "plugin-hooker",
"version": "0.2.1",
"description": "A collection of tools for loading plugins into an application",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"release": "standard-version",
"build": "tsc -p .",
"prepublish": "npm run build",
"postpublish": "npm run clean",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf *.js *.js.map *.d.ts backends"
},
"repository": {
"type": "git",
"url": "git+https://github.com/te-je/plugin-hooker.git"
},
"keywords": [
"js",
"plugin",
"extension",
"hook"
],
"author": "Te-je Rodgers",
"license": "MIT",
"bugs": {
"url": "https://github.com/te-je/plugin-hooker/issues"
},
"homepage": "https://github.com/te-je/plugin-hooker#readme",
"devDependencies": {
"@types/node": "^7.0.18",
"@types/promisify-node": "^0.4.0",
"@types/systemjs": "^0.20.2",
"rimraf": "^2.6.1",
"standard-version": "^4.0.0",
"typescript": "^2.3.2"
},
"dependencies": {
"promisify-node": "^0.4.0",
"rxjs": "^5.3.1"
},
"optionalDependencies": {
"jspm": "0.17.0-beta.41"
}
}