-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 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
{
"name": "has-consent",
"version": "0.1.2",
"description": "GDPR consent string validation library",
"main": "dist/has-consent.min.js",
"files": [
"dist/**/*.js",
"API.md"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "webpack --mode production --config webpack.config.js && webpack --mode development --config webpack.config.js",
"dev": "webpack --mode development --config webpack.config.js",
"docs": "jsdoc2md --files source/**/*.js > API.md",
"format": "prettier --write '{source,__tests__}/**/*.js'",
"precommit": "lint-staged",
"prepublishOnly": "npm run build",
"test": "run-s dev test:specs test:format",
"test:format": "prettier-check '{source,__tests__}/**/*.js'",
"test:specs": "jest"
},
"lint-staged": {
"{source,__tests__}/**/*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kiosked/has-consent.git"
},
"keywords": [
"gdpr",
"consent",
"cookie",
"dpa",
"consent-string"
],
"author": "Perry Mitchell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kiosked/has-consent/issues"
},
"homepage": "https://github.com/Kiosked/has-consent#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"consent-string": "^1.2.4",
"husky": "^0.14.3",
"jest": "^23.5.0",
"jsdoc-to-markdown": "^4.0.1",
"lint-staged": "^7.2.2",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.2",
"prettier-check": "^2.0.0",
"regenerator-runtime": "^0.12.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
}
}