-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (64 loc) · 1.79 KB
/
package.json
File metadata and controls
65 lines (64 loc) · 1.79 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
62
63
64
65
{
"name": "nakds",
"version": "2.4.3",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "gulp",
"commit": "npx git-cz",
"semantic-release": "semantic-release",
"css": "postcss src/css/nakDS.css -o docs/css/nakDS.min.css && yarn css-dist && yarn css-art",
"css:watch": "postcss src/css/nakDS.css -o docs/css/nakDS.min.css && yarn css-dist -w",
"css-dist": "postcss docs/css/nakDS.min.css -o dist/css/nakDS.min.css",
"css-art": "postcss src/css/nakDS.art.css -o docs/css/nakDS.art.css"
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
},
"@semantic-release/npm"
],
"keywords": [
"Design system",
"style guide",
"CSS library"
],
"author": {
"name": "Naiara Abaroa",
"email": "naiaraabaroa@gmail.com",
"web": "https://naknak.me"
},
"license": "ISC",
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/npm": "^8.0.3",
"cssnano": "^5.0.12",
"cz-conventional-changelog": "^3.3.0",
"del": "^6.0.0",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"postcss-import": "^12.0.1",
"postcss-mixins": "^9.0.1",
"postcss-preset-env": "^7.0.0",
"postcss-selector-replace": "^1.0.2",
"semantic-release": "^18.0.1",
"stylelint": "^14.1.0",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nakDS/nakds"
},
"homepage": "",
"description": "",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}