-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.69 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
{
"name": "@paginar/gppstring",
"author": "Paginar <[email protected]>",
"description": "A client library to construct IAB's Global Privacy Platform (GPP) strings",
"version": "1.2.0",
"source": "src/index.ts",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watchAll",
"test:once": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint",
"prebuild": "rm -rf lib",
"tsc": "tsc --noEmit --w",
"tsc:once": "tsc --noEmit",
"build": "parcel build",
"preversion": "npm run lint && npm run tsc:once && npm run test:once",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@parcel/babel-preset-env": "^2.8.0",
"@parcel/packager-ts": "^2.8.0",
"@parcel/transformer-typescript-types": "^2.8.0",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"babel-jest": "^29.3.1",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"parcel": "^2.8.0",
"typescript": "^4.9.3"
},
"keywords": [
"privacy",
"iab",
"gdpr",
"iab-consent",
"ccpa",
"iab-tcf",
"cpra",
"us-privacy"
],
"homepage": "https://github.com/Paginar/gppstring",
"repository": {
"type": "git",
"url": "git+https://github.com/paginar/gppstring.git"
}
}