forked from adriandmitroca/cookie-consent-box
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·53 lines (53 loc) · 1.78 KB
/
package.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.78 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "cookie-consent-box",
"version": "2.3.0",
"description": "A tiny, dependency-free cookie box widget that helps you to be GDPR complaint after including 8 kB of code (gzipped)",
"main": "dist/cookie-consent-box.js",
"scripts": {
"build:scss": "node-sass src/index.scss dist/cookie-consent-box.css",
"build:js": "webpack --env dev && webpack --env build && npm run test",
"build": "npm run build:js && npm run build:scss",
"lint": "eslint src --fix; exit 0 && stylelint \"src/**/*.scss\" --fix",
"test": "npm run lint",
"prepublish": "npm run build",
"watch": "webpack-dev-server --hot --inline & npm run build:scss -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/adriandmitroca/cookie-consent-box.git"
},
"keywords": [
"adriandmitroca",
"cookie-box",
"cookie-law",
"cookie-consent",
"cookie-compliance"
],
"author": "Adrian Dmitroca",
"license": "MIT",
"bugs": {
"url": "https://github.com/adriandmitroca/cookie-consent-box/issues"
},
"homepage": "https://github.com/adriandmitroca/cookie-consent-box",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"node-sass": "^4.9.4",
"stylelint": "^9.7.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.1.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0",
"yargs": "^11.0.0"
}
}