-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "magnum-plugin-utils",
"version": "1.4.0",
"description": "Utility functions to simplify Pomegranate plugin development.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test tap -R spec --cov test/unit/*.js",
"test:file": "NODE_ENV=test tap -R spec --cov",
"test:report": "NODE_ENV=test tap -R spec --cov --coverage-report=html test/unit/*.js"
},
"files": [
"index.js",
"lib/",
"Readme.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/PaperElectron/magnum-plugin-utils.git"
},
"keywords": [
"Magnum",
"Pomegranate",
"Plugin",
"Utilities",
"Framework"
],
"author": "Jim <monstertke@paperelectron.com> (http://paperelectron.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/PaperElectron/magnum-plugin-utils/issues"
},
"homepage": "https://github.com/PaperElectron/magnum-plugin-utils",
"dependencies": {
"bluebird": "^3.3.3",
"lodash": "^4.6.1",
"path-parse": "^1.0.5"
},
"devDependencies": {
"tap": "^5.7.0"
}
}