-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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": "@wpmedia/news-theme-css",
"version": "4.4.1-arc-themes-release-version-1-33.0",
"description": "CSS Grid Framework with Bootstrap-like conventions",
"author": "Brent Miller",
"license": "CC-BY-NC-ND-4.0",
"main": "scss/_index.scss",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"scss-watch": "node-sass --watch scss -o css",
"process-templates": "node -r esm processTemplates.js",
"build-guide": "kss --config ./kss-config.json && node-sass scss -o styleguide/css",
"build-all": "npm run process-templates && npm run build-guide",
"lint": "stylelint 'scss/**' --formatter verbose"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "public"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/WPMedia/news-theme-css.git"
},
"devDependencies": {
"esm": "^3.2.25",
"kss": "^3.0.1",
"node-sass": "^4.14.1",
"styled-components": "^5.0.1",
"stylelint": "^13.6.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-no-unsupported-browser-features": "^4.0.0"
},
"files": [
"js",
"scss",
"readme.md"
]
}