-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.54 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
69
70
{
"name": "generator-sassdoc-theme",
"version": "0.2.3",
"description": "Scafold a new SassDoc theme",
"keywords": [
"yeoman-generator",
"sass",
"scss",
"doc",
"documentation"
],
"author": {
"name": "Pascal Duez",
"url": "https://github.com/pascalduez"
},
"contributors": [
{
"name": "Valérian Galliat",
"url": "https://twitter.com/valeriangalliat"
},
{
"name": "Fabrice Weinberg",
"url": "https://twitter.com/fweinb"
},
{
"name": "Kitty Giraudel",
"url": "https://twitter.com/KittyGiraudel"
}
],
"homepage": "https://github.com/SassDoc/generator-sassdoc-theme",
"bugs": "https://github.com/SassDoc/generator-sassdoc-theme/issues",
"repository": {
"type": "git",
"url": "git://github.com/SassDoc/generator-sassdoc-theme.git"
},
"license": "Unlicense",
"files": [
"generators",
"lib",
"templates",
"utils",
"CHANGELOG.md",
"README.md",
"UNLICENSE"
],
"dependencies": {
"chalk": "^0.5.1",
"yeoman-generator": "^0.17.3",
"yosay": "^1.0.0"
},
"devDependencies": {
"mocha": "^1.21.4",
"standard": "^8.6.0"
},
"peerDependencies": {
"yo": ">=1.2.0"
},
"scripts": {
"clean": "rm -rf test/.tmp",
"lint": "standard generators/**/*.js lib/*.js utils/*.js test/*.js",
"test": "mocha --reporter spec",
"pretest": "$npm_package_scripts_lint & $npm_package_scripts_clean",
"posttest": "$npm_package_scripts_clean"
},
"standard": {
"env": {
"mocha": true
}
}
}