-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.34 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
{
"name": "@micropackage/vw",
"version": "1.1.0",
"description": "Viewport units handling sass mixins",
"main": "dist/vw.js",
"repository": "https://github.com/micropackage/vw",
"author": "Wojtek Szałkiewicz <wojtek@szalkiewicz.pl>",
"license": "GPL-3.0-or-later",
"scripts": {
"lint:scripts": "eslint src/js",
"lint:tests": "eslint tests",
"build": "babel src/js/vw.js -o dist/vw.js",
"lint:styles": "stylelint src/scss",
"lint": "run-p \"lint:*\"",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@wordpress/eslint-plugin": "^9.2.0",
"@wordpress/stylelint-config": "^19.1.0",
"babel-preset-minify": "^0.5.1",
"eslint": "7",
"eslint-plugin-jest": "^25.2.2",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"stylelint": "^13.13.1"
},
"babel": {
"presets": [
"@babel/preset-env",
"minify"
]
},
"eslintConfig": {
"extends": [
"plugin:@wordpress/eslint-plugin/esnext",
"plugin:jest/recommended"
],
"plugins": [
"jest"
],
"env": {
"browser": true,
"jest/globals": true
}
},
"stylelint": {
"extends": "@wordpress/stylelint-config/scss"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "jest-environment-jsdom"
}
}