This repository has been archived by the owner on May 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 166
/
Copy pathpackage.json
61 lines (61 loc) · 1.87 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
{
"name": "terra-paginator",
"version": "2.93.0",
"description": "Paginator to be used for data sets of known and unknown size. Provides first, last, previous, next, and paged functionality.",
"author": "Cerner Corporation",
"repository": {
"type": "git",
"url": "git+https://github.com/cerner/terra-core.git",
"directory": "packages/terra-paginator"
},
"bugs": {
"url": "https://github.com/cerner/terra-core/issues"
},
"homepage": "https://github.com/cerner/terra-core#readme",
"license": "Apache-2.0",
"keywords": [
"Cerner",
"Paginator",
"Terra",
"terra-paginator",
"UI"
],
"main": "lib/Paginator.js",
"files": [
"lib",
"src",
"translations",
"CHANGELOG.md",
"LICENSE",
"NOTICE",
"README.md"
],
"peerDependencies": {
"react": "16",
"react-dom": "16",
"react-intl": "2 || 3 || 4 || 5"
},
"dependencies": {
"classnames": "2",
"keycode-js": "3",
"prop-types": "15",
"terra-mixins": "^1.41.0",
"terra-responsive-element": "^5.42.0",
"terra-theme-context": "1",
"terra-visually-hidden-text": "^2.39.0"
},
"scripts": {
"compile": "babel --root-mode upward src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
"lint:scss": "stylelint src/**/*.scss",
"precompile": "rm -rf lib",
"props-table": "props-table ./src/Paginator.jsx --out-dir ./docs/props-table",
"test": "npm run lint && npm run jest && npm run wdio",
"jest": "jest --config ../../jest.config.js",
"wdio:default": "cd ../.. && terra wdio",
"wdio:lowlight": "cd ../.. && terra wdio --themes clinical-lowlight-theme",
"wdio:fusion": "cd ../.. && terra wdio --themes orion-fusion-theme",
"wdio": "npm run wdio:default && npm run wdio:lowlight && npm run wdio:fusion"
}
}