-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 2.93 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
{
"name": "cspace-ui-plugin-profile-ohc",
"version": "2.0.1",
"description": "OHC profile plugin for the CollectionSpace UI",
"author": "",
"license": "ECL-2.0",
"keywords": [
"collectionspace",
"cspace",
"ui",
"plugin",
"profile",
"ohc"
],
"repository": {
"type": "git",
"url": "https://github.com/lyrasis/cspace-ui-plugin-profile-ohc.js"
},
"main": "src/index.js",
"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": "istanbul report --root coverage text && istanbul report --root coverage lcov",
"devserver": "webpack serve",
"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": {
"react-intl": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@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": "^5.1.2",
"babel-plugin-react-intl": "^3.0.1",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-immutable": "^1.6.0",
"cross-env": "^2.0.0",
"cspace-ui-plugin-profile-anthro": "^7.0.0",
"cspace-ui": "^9.0.0",
"css-loader": "^6.7.3",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^6.2.0",
"http-proxy-middleware": "^2.0.6",
"istanbul": "^0.4.5",
"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-test-renderer": "^16.14.0",
"redux-mock-store": "^1.5.1",
"rimraf": "^2.6.2",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^5.0.4"
},
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"json"
],
"report-dir": "./coverage/Node.js",
"sourceMap": false,
"instrument": false,
"cache": true
}
}