-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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
41
42
43
44
45
46
47
{
"name": "neomad-styleguide",
"version": "1.0.0",
"description": "Neomad styleguide, built with atomic design mindset",
"scripts": {
"lint": "stylelint content/styles/**/*.css --config postcss.linter.json",
"dev": "postcss ./content/styles/styleguide.css -o ./content/dist/styleguide.css --env dev",
"watch": "npm run dev -- --watch --verbose",
"build": "postcss ./content/styles/main.css -o ./content/dist/main.css --env prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neomad-team/styleguide.git"
},
"keywords": [
"styleguide",
"atomic design",
"css",
"vanillaCSS",
"cssnext",
"postcss"
],
"author": "neomad",
"license": "MIT",
"bugs": {
"url": "https://github.com/neomad-team/styleguide/issues"
},
"homepage": "https://github.com/neomad-team/styleguide#readme",
"devDependencies": {
"autoprefixer": "^9.7.4",
"cssnano": "^4.1.10",
"postcss": "^7.0.26",
"postcss-browser-reporter": "^0.5.0",
"postcss-cli": "^6.1.3",
"postcss-cssnext": "^3.1.0",
"postcss-custom-properties": "^7.0.0",
"postcss-discard-duplicates": "^4.0.2",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^5.3.0",
"postcss-pxtorem": "^4.0.1",
"postcss-reporter": "^5.0.0",
"postcss-url": "^7.3.2",
"precss": "^3.1.2",
"stylelint": "^12.0.1",
"stylelint-cli": "^1.2.0"
}
}