-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1 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
{
"name": "cactus-framework",
"version": "1.1.0",
"description": "Light weight CSS framework based on ITCSS, BEM and Scss.",
"main": "application.scss",
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./test/sass.js",
"lint": "stylelint ./**/*.scss --syntax scss",
"build": "node-sass --output-style compressed --precision 9 application.scss > build/cactus-framework.css"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MrDinsdale/Cactus.git"
},
"keywords": [
"Scss",
"CSS",
"grid",
"framework",
"responsive"
],
"author": "Joe Dinsdale",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrDinsdale/Cactus/issues"
},
"homepage": "https://github.com/MrDinsdale/Cactus#readme",
"dependencies": {
"mocha": "^3.1.2",
"pre-commit": "^1.1.3",
"sass-true": "^2.1.3",
"stylelint": "^7.5.0",
"stylelint-selector-bem-pattern": "^1.0.0",
"node-sass": "^3.13.0"
}
}