-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "custom-cookie-message",
"version": "1.0.0",
"description": "Angry Creatives buildjob for plugins",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"dev": "npm run development",
"start": "mix watch",
"development": "mix",
"hot": "mix watch --hot",
"prod": "npm run production",
"dist": "npm run production",
"build": "npm run production",
"production": "mix --production",
"lint:css": "stylelint ./src/sass/* --config ./.stylelintrc --max-warnings 0",
"lint:js": "eslint ./src/javascript/* --config ./.eslintrc --max-warnings 0",
"fix:css": "stylelint ./src/sass/* --config ./.stylelintrc --fix",
"fix:js": "eslint ./src/javascript/* --config ./.eslintrc --fix"
},
"repository": {
"type": "git",
"url": "https://git.synotio.se/qala/ac-plugin-boilerplate.git"
},
"author": "Angry Creative",
"license": "ISC",
"devDependencies": {
"cross-env": "^7.0.3",
"laravel-mix": "^6.0.28",
"resolve-url-loader": "^3.1.2",
"sass": "^1.32.8",
"sass-loader": "^12.0.0",
"vue-template-compiler": "^2.6.12"
}
}