-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.42 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
{
"name": "campus-a11y",
"version": "1.1.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"watch": {
"build": {
"patterns": [
"assets/src/sass",
"assets/src/js"
],
"extensions": "scss,js"
}
},
"scripts": {
"test": "eslint assets/src",
"build:dev": "NODE_ENV=development webpack --mode development",
"build:prod": "NODE_ENV=production webpack --mode production",
"build": "npm run build:dev && npm run build:prod",
"i18n": "wpi18n makepot --domain-path=languages --exclude=src/plugin-update-checker",
"release": "npm run test && npm run build && npm run i18n",
"watch": "npm-watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/runtime": "^7.24.8",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"core-js": "^3.37.1",
"eslint": "^9.7.0",
"file-loader": "^6.2.0",
"sass": "^1.77.8",
"node-wp-i18n": "^1.2.7",
"npm-watch": "^0.13.0",
"postcss-loader": "^8.1.1",
"sass-loader": "^15.0.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"last 2 version",
"not dead",
"iOS >= 9"
],
"dependencies": {
"get-contrast": "^3.0.0",
"rgb-hex": "^4.1.0"
}
}