forked from Workday/canvas-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "@workday/canvas-kit-labs-react-pagination",
"version": "3.7.0",
"description": "contains a component for a pagination bar and dispatches for page changes",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
"main": "dist/commonjs/index.js",
"module": "dist/es6/index.js",
"sideEffects": false,
"types": "dist/es6/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Workday/canvas-kit/tree/master/modules/_labs/pagination/react"
},
"files": [
"dist/",
"lib/",
"index.ts"
],
"scripts": {
"watch": "yarn build:es6 -w",
"clean": "rimraf dist && rimraf .build-info && mkdirp dist",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:es6": "tsc -p tsconfig.es6.json",
"build:rebuild": "npm-run-all clean build",
"build": "npm-run-all --parallel build:cjs build:es6",
"depcheck": "node ../../../../utils/check-dependencies-exist.js"
},
"keywords": [
"canvas",
"canvas-kit",
"react",
"components",
"workday",
"pagination"
],
"peerDependencies": {
"react": ">= 16.8 < 17"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@workday/canvas-kit-labs-react-core": "^3.7.0",
"@workday/canvas-kit-react-button": "^3.7.0",
"@workday/canvas-kit-react-core": "^3.7.0",
"@workday/canvas-kit-react-text-input": "^3.7.0",
"@workday/canvas-system-icons-web": "^1.0.20",
"lodash": "^4.17.14",
"uuid": "^3.3.3"
}
}