This repository was archived by the owner on Apr 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.27 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.27 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
{
"name": "usercentrics-widgets",
"version": "0.0.7",
"description": "Lightweight placeholders compatible with Usercentrics CMP",
"browser": "./dist/ucw.js",
"files": [
"/dist",
"/example"
],
"scripts": {
"watch": "./node_modules/.bin/rollup -c rollup.config.js --configDebug -w",
"build:css": "./node_modules/.bin/cleancss -o ./dist/ucw.min.css ./style/ucw.css",
"build": "npm run build:css && ./node_modules/.bin/rollup -c rollup.config.js",
"lint": "./node_modules/.bin/semistandard --verbose ./src/** | ./node_modules/.bin/snazzy",
"lint:fix": "./node_modules/.bin/semistandard --fix ./src/**",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Philipp Schmiedel <mail@philippschmiedel.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/philsch/usercentrics-widgets.git"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@rollup/plugin-strip": "^2.0.1",
"clean-css": "^5.1.2",
"clean-css-cli": "^5.3.0",
"rollup": "^2.51.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-polyfill": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"semistandard": "^16.0.1",
"snazzy": "^9.0.0",
"standard": "^16.0.3"
}
}