forked from salesforce-ux/sass-deprecate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "sass-deprecate",
"version": "1.1.3",
"description": "Sass Deprecate: deprecate with confidence",
"keywords": [
"sass",
"eyeglass-module"
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git@github.com:salesforce-ux/sass-deprecate.git"
},
"author": "Salesforce and contributors",
"scripts": {
"test": "./test/spec.rb",
"generate-doc": "./node_modules/.bin/sassdoc index.scss sassdoc --config=.sassdocrc && echo 'Documentation successfully generated in sassdoc/index.html'",
"deploy-doc": "git add sassdoc && git commit -m 'Compile SassDoc' --allow-empty && git push origin :gh-pages && git subtree push --prefix sassdoc origin gh-pages && echo 'Documentation successfully deployed to http://salesforce-ux.github.io/sass-deprecate/'"
},
"files": [
"index.scss",
"README.md",
"LICENSE.txt"
],
"main": "index.scss",
"ignore": [
"test",
"sassdoc",
"**/.*",
"assets"
],
"eyeglass": {
"needs": "^0.8.2",
"sassDir": "./index.scss",
"exports": false
},
"devDependencies": {
"node-sass": "^4.5.0",
"sassdoc": "^2.2.0"
}
}