-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.51 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.51 KB
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
56
57
58
59
60
61
{
"name": "sass-griddle",
"version": "0.0.0-development",
"description": "Simple set of Sass abstractions for CSS Grid",
"main": "index.js",
"scripts": {
"pretest": "npm run lint",
"test": "mocha tests",
"lint": "eslint '**/*.js' && sass-lint -v -q",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"reparo": "reparo -b master"
},
"eyeglass": {
"sassDir": "sass",
"exports": "eyeglass-exports.js",
"name": "griddle",
"needs": "^1"
},
"repository": {
"type": "git",
"url": "https://github.com/at-import/griddle.git"
},
"keywords": [
"eyeglass-module",
"sass",
"grid",
"css",
"grid",
"css-grid",
"singularity"
],
"author": "Sam Richard <sam@snug.ug>",
"license": "MIT",
"bugs": {
"url": "https://github.com/at-import/griddle/issues"
},
"homepage": "https://github.com/at-import/griddle#readme",
"devDependencies": {
"ava": "^0.18.2",
"eslint-config-punchcard": "^1.1.1",
"eyeglass": "^1.2.1",
"mocha": "^3.2.0",
"node-sass": "^4.5.0",
"nyc": "^10.1.2",
"punchcard-commit-msg": "^1.1.0",
"punchcard-semantic-release": "^2.0.4",
"reparo": "^1.1.1-0",
"sass-lint": "^1.10.2",
"sass-true": "^2.2.1",
"semantic-release": "^6.3.2"
},
"config": {
"ghooks": {
"commit-msg": "punchcard-commit-msg"
}
},
"release": {
"analyzeCommits": "punchcard-semantic-release/analyze",
"generateNotes": "punchcard-semantic-release/notes"
}
}