-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.29 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
54
55
{
"name": "@didomi/react",
"version": "1.8.8",
"description": "didomi-react-test React component",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component && cp -r ./index.d.ts ./lib/index.d.ts",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"lint": "prettier --check src/ tests/",
"lint:fix": "prettier --write src/ tests/"
},
"dependencies": {
"prop-types": "^15.8.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"envsub": "^3.1.0",
"nwb": "0.25.x",
"prettier": "3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"author": "Didomi",
"homepage": "https://www.didomi.io/",
"license": "MIT",
"keywords": [
"didomi",
"sdk",
"gdpr",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/didomi/react"
},
"publishConfig": {
"access": "public",
"@didomi:registry": "https://registry.npmjs.org"
}
}