This repository has been archived by the owner on Jul 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 3.12 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@adv-ui/boros-cmp",
"version": "2.0.0",
"description": "Adevinta GDPR - Consent Management Provider - Standalone",
"main": "dist/cmp.pro.js",
"scripts": {
"prepack": "rm -Rf dist && rm -Rf lib && npm run build:cmp",
"phoenix": "rm -Rf node_modules && rm -Rf package-lock.json && npm install",
"start:cmp:dev": "webpack-dev-server --config src/cmp/infrastructure/build/webpack.config.cmp.babel.js --mode=development",
"check": "npm run lint && npm run test",
"lint": "sui-lint js",
"test": "mocha --recursive --require @babel/register \"src/test/**/*.js\"",
"test:debug": "mocha --inspect-brk --recursive --require @babel/register \"src/test/**/*.js\"",
"coverage": "istanbul cover --report html _mocha -- ./src/test --recursive --compilers js:@babel/register",
"coverage:ci": "istanbul cover _mocha -- ./src/test --recursive --compilers js:@babel/register && codecov",
"build:cmp": "npm run build:cmp:pro && npm run lib:cmp",
"build:cmp:dev": "webpack --config src/cmp/infrastructure/build/webpack.config.babel.js --mode=development",
"build:cmp:pro": "webpack --config src/cmp/infrastructure/build/webpack.config.babel.js --mode=production",
"build:global": "npm run build:global:pro",
"build:global:dev": "webpack --config src/globalstorage/infrastructure/build/webpack.config.babel.js --mode=development",
"build:global:pro": "webpack --config src/globalstorage/infrastructure/build/webpack.config.babel.js --mode=production",
"lib:cmp": "babel src --out-dir lib",
"versiona": "node versiona.js"
},
"repository": {
"type": "git",
"url": "https://github.com/scm-spain/boros-CMP.git"
},
"keywords": [
"ads",
"advertising",
"schibsted",
"adevinta",
"gdpr",
"cmp",
"consent-string",
"iab",
"boros"
],
"author": "One Punch Team",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.3.4",
"@babel/plugin-transform-modules-commonjs": "7.2.0",
"@babel/polyfill": "7.2.5",
"@babel/register": "7.0.0",
"@s-ui/lint": "3",
"babel-loader": "8.0.5",
"babel-plugin-transform-define": "1.3.1",
"babel-preset-sui": "3.0.0",
"chai": "4.0.2",
"clean-webpack-plugin": "0.1.19",
"codecov": "3.0.2",
"html-webpack-plugin": "3.2.0",
"istanbul": "1.1.0-alpha.1",
"jsdom": "11.11.0",
"mocha": "5.2.0",
"sinon": "2.3.4",
"versiona": "4",
"webpack": "4.12.0",
"webpack-cli": "3.0.8",
"webpack-dev-server": "3.10.1"
},
"pre-commit": [
"lint",
"test"
],
"babel": {
"presets": [
"sui"
],
"plugins": [
"@babel/plugin-transform-modules-commonjs",
[
"transform-define",
{
"_CMP_VERSION": 1
}
]
]
},
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"dependencies": {
"@s-ui/polyfills": "1",
"consent-string": "1.4.2",
"isomorphic-unfetch": "3.0.0",
"uuid": "3.3.2"
},
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js",
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
}
}