forked from didomi/react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.17 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
{
"name": "@didomi/react",
"version": "1.8.3",
"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": {
"dset": "3.1.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"envsub": "^3.1.0",
"nwb": "0.23.x",
"prettier": "2.1.2",
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"author": "Didomi",
"homepage": "https://www.didomi.io/",
"license": "MIT",
"keywords": [
"didomi",
"sdk",
"gdpr",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/didomi/react"
}
}