-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 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
{
"name": "@datafund/consent-viewer",
"version": "0.1.8",
"main": "dist/index.js",
"module": "dist/index.js",
"description": "React plugin for displaying human-readable Consent Receipt (CR) JSON.",
"repository": {
"type": "git",
"url": "git+https://github.com/datafund/dr-viewer.git"
},
"author": "Datafund <info@datafund.io> (https://datafund.io)",
"license": "ISC",
"files": [
"dist"
],
"scripts": {
"start": "react-scripts start",
"build-examples": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build": "rimraf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__",
"babel-version": "babel --version"
},
"dependencies": {
"jquery": "^3.4.1"
},
"devDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"react-scripts": "^3.0.1",
"rimraf": "^2.6.3",
"typescript": "^3.4.5",
"lodash": "^4.17.11"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bugs": {
"url": "https://github.com/datafund/dr-viewer/issues"
},
"homepage": "https://github.com/datafund/dr-viewer#readme"
}