-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "broccoli-sassdoc",
"title": "Broccoli SassDoc",
"version": "2.0.0",
"description": "SassDoc compiler for Broccoli",
"keywords": [
"broccoli-plugin",
"sass",
"scss",
"doc",
"documentation"
],
"homepage": "https://github.com/SassDoc/broccoli-sassdoc",
"bugs": "https://github.com/SassDoc/broccoli-sassdoc/issues",
"author": {
"name": "Pascal Duez",
"url": "https://github.com/pascalduez"
},
"repository": {
"type": "git",
"url": "git://github.com/SassDoc/broccoli-sassdoc.git"
},
"main": "index.js",
"files": [
"CHANGELOG.md",
"index.js",
"README.md",
"UNLICENSE"
],
"dependencies": {
"broccoli": "^0.16.9",
"broccoli-writer": "^0.1.1",
"lodash.assign": "^4.2.0",
"sassdoc": "^2.0.0"
},
"devDependencies": {
"broccoli": "^1.1.0",
"faucet": "0.0.1",
"rimraf": "^2.2.8",
"standard": "^10.0.0",
"tape": "^4.6.3"
},
"engines": {
"node": ">=0.10.0"
},
"license": "Unlicense",
"scripts": {
"rebuild": "rm -rf node_modules && npm install",
"lint": "standard *.js test/*.test.js",
"build": "rimraf sassdoc && broccoli build sassdoc",
"pretest": "${npm_package_scripts_lint} & npm run-script build",
"test": "tape test/*.test.js | faucet",
"posttest": "rimraf tmp sassdoc"
}
}