-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.45 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
59
60
61
62
63
64
65
66
67
68
{
"name": "generator-license-cc",
"version": "1.1.0",
"description": "Generate a Creative Commons LICENSE for your Creative Work",
"homepage": "https://github.com/ek9/generator-license-cc",
"author": {
"name": "ek9",
"email": "[email protected]",
"url": "https://ek9.co"
},
"files": [
"app"
],
"main": "app/index.js",
"keywords": [
"yeoman-generator",
"yeoman",
"generator",
"license",
"creative",
"commons",
"cc",
"cc-by",
"cc-by-sa",
"cc-by-nd",
"cc-by-nc-nd",
"cc-by-nc-sa",
"cc0"
],
"dependencies": {
"chalk": "^1.1.3",
"yeoman-generator": "^1.0.1"
},
"devDependencies": {
"eslint": "^3.14.0",
"eslint-config-xo-space": "^0.15.0",
"gulp": "^3.9.1",
"gulp-coveralls": "^0.1.4",
"gulp-eslint": "^3.0.1",
"gulp-exclude-gitignore": "^1.1.1",
"gulp-istanbul": "^1.1.1",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-mocha": "^3.0.1",
"gulp-nsp": "^2.4.2",
"gulp-plumber": "^1.1.0",
"mocha": "^3.2.0",
"yeoman-assert": "^2.2.2",
"yeoman-test": "^1.6.0"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ek9/generator-license-cc.git"
},
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ek9/generator-license-cc/issues"
}
}