-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "js-plugins",
"description": "An extension-point based open plugin framework",
"version": "1.0.0",
"author": "Yisui Hu <easeway@gmail.com>",
"keywords": ["extension", "plugin", "framework"],
"scripts": {
"test": "mocha -R spec test/*-test.js",
"cov-html": "mocha -r blanket -R html-cov test/*-unit-test.js >_coverage.html"
},
"repository": {
"type": "git",
"url": "https://github.com/easeway/js-plugins"
},
"main": "./index",
"dependencies": {
"js-class": "0.0.2",
"js-flow": "0.0.1"
},
"devDependencies": {
"mocha": "1.17.1",
"sandboxed-module": "0.3.0",
"blanket": "1.1.6"
},
"engines": {
"node": ">=0.10",
"npm": "1"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/easeway/js-plugins/raw/master/LICENSE"
}
],
"config": {
"blanket": {
"onlyCwd": true,
"pattern": "//^((?!node_modules).)*/lib/.+$/"
}
}
}