-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
33 lines (33 loc) · 1.07 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
{
"devDependencies": {
"casperjs": "^1.1.3",
"conventional-changelog-cli": "^1.3.1",
"mocha": "^3.2.0",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"phantomcss": "^1.1.5",
"sass-true": "^2.2.1",
"sassdoc": "^2.2.0",
"sassdocify": "^0.3.4",
"scss-bundle": "^1.0.1"
},
"scripts": {
"build-sass": "node-sass --output-style compressed ./src -o ./src",
"watch-sass": "nodemon -e scss -x \"yarn build-sass\"",
"watch": "yarn watch-sass",
"test": "mocha",
"docs": "sassdoc src",
"sassdocify": "sassdocify src",
"bundle": "scss-bundle -e grassy.scss -d bundle.scss",
"visual-test": "casperjs test casper.js --engine=slimerjs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && head -n10 CHANGELOG.md && echo '...etc...'"
},
"name": "grassy",
"version": "0.2.0",
"description": "Build HTML layout through ASCII art in Sass.",
"main": "grassy.scss",
"repository": "https://github.com/lazarljubenovic/grassy/",
"author": "Lazar Ljubenović",
"license": "MIT",
"dependencies": {}
}