-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1000 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1000 Bytes
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": "pattern-library",
"version": "1.4.0",
"_version_comment": "When new version, must also update `pattern-library.gemspec`.",
"description": "SASS files implementing OpenStax pattern library conventions",
"main": "index.js",
"style": "core/pattern-library.scss",
"repository": {
"type": "git",
"url": "https://github.com/openstax/pattern-library"
},
"keywords": [
"sass",
"openstax"
],
"author": "Roy Johnson <roy.e.johnson@rice.edu>",
"license": "AGPL-3.0",
"devDependencies": {
"css-coverage": "2.1.0",
"kss": "^3.0.0-beta.18",
"node-sass": "^7.0.0",
"sass": "^1.53.0",
"sass-lint": "^1.12.1"
},
"scripts": {
"test": "css-coverage --css ./styleguide/core/pattern-library.css --html ./styleguide/index.html --lcov ./css.lcov",
"test2": "css-coverage --css ./styleguide/core/pattern-library.css",
"posttest": "sass-lint -c sass-lint.yml -v -q",
"kss": "node_modules/kss/bin/kss --config kss-config.json"
}
}