-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.83 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.83 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
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
71
72
73
74
75
76
{
"name": "sassdoc",
"description": "Like JSDoc for your Sass files.",
"author": "Hugo Giraudel <hugo.giraudel@gmail.com> (http://hugogiraudel.com)",
"contributors": [
{
"name": "Fabrice Weinberg",
"url": "https://twitter.com/fweinb",
"email": "fabrice@weinberg.me"
},
{
"name": "Valérian Galliat",
"url": "https://twitter.com/valeriangalliat"
},
{
"name": "Pascal Duez",
"url": "https://twitter.com/pascalduez"
}
],
"version": "1.6.0",
"license": {
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
},
"repository": {
"type": "git",
"url": "https://github.com/SassDoc/sassdoc"
},
"homepage": "https://github.com/SassDoc/sassdoc",
"keywords": [
"sass",
"scss",
"doc",
"jsdoc"
],
"bugs": {
"url": "https://github.com/SassDoc/sassdoc/issues"
},
"main": "src/api.js",
"bin": {
"sassdoc": "bin/sassdoc"
},
"dependencies": {
"chalk": "^0.5.0",
"docopt": "^0.4.0",
"js-yaml": "^3.2.1",
"lodash": "^2.4.1",
"mkdirp": "^0.5.0",
"q": "^1.0.1",
"rimraf": "~2.2.8",
"sassdoc-theme-default": "^1.4.0",
"scss-comment-parser": "^0.3.2",
"update-notifier": "^0.2.0"
},
"devDependencies": {
"assert": "^1.1.1",
"atom-screenshot": "^0.1.2",
"fs-extra": "^0.11.1",
"grunt": "^0.4.5",
"grunt-autoprefixer": "^1.0.0",
"grunt-browser-sync": "^1.1.2",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-sass": "^0.7.3",
"grunt-contrib-uglify": "^0.5.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-gh-pages": "^0.9.1",
"grunt-mocha-test": "^0.11.0",
"load-grunt-tasks": "^0.6.0",
"time-grunt": "^0.4.0"
},
"scripts": {
"test": "grunt test",
"rebuild": "rm -rf node_modules && npm install"
}
}