-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
89 lines (89 loc) · 2.76 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@sebgroup/vanilla",
"description": "SEB's vanilla components",
"version": "0.0.0-semantically-released",
"license": "UNLICENSED",
"private": false,
"scripts": {
"dev": "node node_modules/davanmonet/dvm-build/dev-server.js",
"build-dvm": "node node_modules/davanmonet/dvm-build/build-dvm.js",
"build-pl": "node node_modules/davanmonet/dvm-build/build-patternlibrary.js",
"build": "npm run build-dvm && npm run build-pl",
"test": "mocha src/test/test-sass.js",
"lint": "stylelint src/**/*.scss",
"sassdoc": "node node_modules/sassdoc/bin/sassdoc src",
"commit": "git-cz",
"travis-deploy-once": "travis-deploy-once --pro",
"semantic-release": "semantic-release",
"add-fa-config": "npm config set '@fortawesome:registry' https://npm.fontawesome.com/ && npm config set '//npm.fontawesome.com/:_authToken' $FA_TOKEN",
"build-demo-site": "export PKG_VERSION=`npm show @sebgroup/vanilla version` && replace 0.0.0-semantically-released $PKG_VERSION package.json && npm run build",
"package-lock-sanitizer": "package-lock-sanitizer && git add package-lock.json",
"format:fix": "pretty-quick --staged"
},
"config": {
"configFile": "./config/projectoptions.yml",
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"master",
{
"name": "next",
"prerelease": "next",
"channel": "next"
}
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint --edit",
"pre-commit": "run-s format:fix lint package-lock-sanitizer"
}
},
"dependencies": {
"@sebgroup/fonts": "^1.1.0",
"include-media": "^1.4.9"
},
"devDependencies": {
"@applitools/eyes-cypress": "^3.9.20",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"babel-eslint": "^10.1.0",
"cssnano": "^6.0.1",
"cypress": "^4.4.0",
"cz-conventional-changelog": "^3.1.0",
"davanmonet": "^4.0.5",
"eslint-plugin-babel": "^5.3.0",
"husky": "^4.2.3",
"lodash": "^4.17.15",
"mocha": "^7.1.1",
"node-sass-tilde-importer": "^1.0.2",
"npm-run-all": "^4.1.5",
"package-lock-sanitizer": "^1.0.1",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"replace": "^1.1.5",
"sass-true": "^5.0.0",
"sassdoc": "^2.7.1",
"sast": "^0.8.1",
"semantic-release": "^17.0.4",
"stylelint": "^13.2.1",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-scss": "^3.16.0",
"travis-deploy-once": "^5.0.11"
},
"repository": {
"type": "git",
"url": "https://github.com/sebgroup/vanilla-pattern-library.git"
},
"publishConfig": {
"access": "public"
}
}