-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
118 lines (118 loc) · 3.49 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@collectionspace/cspace-public-browser",
"version": "3.3.0-rc.0",
"description": "CollectionSpace public browser",
"author": "Ray Lee <ray.lee@lyrasis.org>",
"license": "ECL-2.0",
"keywords": [
"collectionspace",
"cspace"
],
"repository": {
"type": "git",
"url": "https://github.com/collectionspace/cspace-public-browser.js.git"
},
"main": "src/index.jsx",
"files": [
"dist",
"lib",
"src",
"styles",
"images"
],
"scripts": {
"build": "npm run build-cjs && npm run build-umd",
"build-cjs": "cross-env BABEL_ENV=cjs babel ./src -d lib",
"build-umd": "npm run build-umd-dev && npm run build-umd-prod",
"build-umd-dev": "webpack",
"build-umd-prod": "cross-env NODE_ENV=production webpack",
"check": "npm run lint && npm run test && npm run coverage",
"clean": "rimraf build lib dist coverage errorShots",
"coverage": "nyc report --temp-dir coverage --reporter text && nyc report --temp-dir coverage --reporter lcov",
"devserver": "webpack-dev-server",
"doc": "npx babel-node generateDocs.js",
"lint": "eslint --ext .jsx,.js *.js src test",
"prepare": "npm run clean && npm run build",
"start": "cross-env NODE_ENV=test karma start",
"test": "cross-env NODE_ENV=test karma start --singleRun=true"
},
"dependencies": {
"classnames": "^2.2.6",
"cspace-refname": "^1.0.2",
"history": "^4.10.1",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.5",
"memoize-one": "^5.1.1",
"prop-types": "^15.7.2",
"qs": "^6.7.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"react-image-gallery": "^1.0.6",
"react-intl": "^3.12.0",
"react-redux": "^7.1.3",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"redux": "^4.0.5",
"redux-thunk": "^2.1.0",
"warning": "^4.0.3"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"babel-loader": "^9.1.2",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-react-intl": "^5.1.18",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.0",
"css-loader": "^6.7.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^6.2.0",
"glob": "^7.1.2",
"jsonfile": "^5.0.0",
"karma": "^6.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.0",
"loglevel": "^1.6.1",
"mocha": "^10.2.0",
"nyc": "^14.1.1",
"react-shallow-testutils": "^3.0.1",
"react-test-renderer": "^16.8.6",
"redux-mock-store": "^1.5.1",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"json"
],
"report-dir": "./coverage/Node.js",
"sourceMap": false,
"instrument": false,
"cache": true
}
}