-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 873 Bytes
/
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
{
"name": "testing-sass-with-true",
"version": "0.0.0",
"description": "Sample project exploring a setup for testing Sass with True.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec",
"build-sass": "./node_modules/.bin/node-sass scss/styles.scss css/styles.css"
},
"repository": {
"type": "git",
"url": "git://github.com/bookwyrm/testing-sass-with-true.git"
},
"keywords": [
"sass",
"testing",
"true"
],
"author": "Matt Vanderpol <[email protected]> (http://mattvanderpol.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bookwyrm/testing-sass-with-true/issues"
},
"homepage": "https://github.com/bookwyrm/testing-sass-with-true",
"devDependencies": {
"sass-true": "~2.0.2",
"mocha": "~2.2.5",
"path": "~0.11.14",
"node-sass": "~3.2.0"
}
}