This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.02 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
{
"name": "postcss-selector-scope",
"version": "1.0.0",
"description": "PostCSS plugin to scope styles using :not() pseudo-class",
"keywords": [
"postcss",
"postcss-plugin",
"css",
"style-scope",
"web components",
"shadow dom"
],
"repository": {
"type": "git",
"url": "https://github.com/BBVAEngineering/postcss-selector-scope.git"
},
"author": "BBVAEngineering",
"license": "MIT",
"scripts": {
"start": "onchange 'lib/*.js' 'develop/*.js' 'tests/fixtures/develop/*.css' -- node develop/",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"lint:js": "eslint --max-warnings 0 **/*.js",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"lint-staged": {
"**/*.js": [
"npm run lint:js -- --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": "8.* || >= 10.*"
},
"main": "lib/index.js",
"dependencies": {
"escape-regex-string": "^1.0.6",
"postcss": "^7.0.14"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^8.0.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/exec": "^3.3.2",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/release-notes-generator": "^7.1.4",
"commitizen": "^4.0.3",
"common-tags": "^1.8.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.0.1",
"eslint-config-bbva": "^3.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jest": "^22.13.0",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.0.1",
"fs-extra": "^8.0.1",
"husky": "^4.0.2",
"jest": "^24.7.1",
"lint-staged": "^9.0.1",
"onchange": "^6.0.0",
"prettier": "^1.17.0",
"semantic-release": "^15.13.3"
}
}