forked from twada/licensify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.23 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "licensify",
"description": "Browserify plugin to prepend license header to your bundle",
"version": "1.4.0",
"author": {
"name": "Takuto Wada",
"email": "[email protected]",
"url": "https://github.com/twada"
},
"bugs": "https://github.com/twada/licensify/issues",
"contributors": [
{
"name": "Okuno Kentaro",
"url": "https://github.com/armorik83"
},
{
"name": "Ayumu Sato",
"url": "https://github.com/ahomu"
}
],
"dependencies": {
"through2": "^2.0.0",
"type-name": "^1.0.0"
},
"devDependencies": {
"browserify": "^11.0.1",
"espower-loader": "^1.0.0",
"event-stream": "^3.3.1",
"intelli-espower-loader": "^1.0.0",
"mocha": "^2.3.0",
"power-assert": "^1.0.0"
},
"directories": {
"test": "test"
},
"files": [
"CHANGELOG.md",
"README.md",
"index.js",
"package.json",
"lib",
"test"
],
"homepage": "https://github.com/twada/licensify",
"keywords": [
"license",
"browserify-plugin"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/twada/licensify.git"
},
"scripts": {
"test": "mocha --require intelli-espower-loader"
}
}