-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
130 lines (130 loc) · 3.4 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
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "react-accessible-shuttle",
"version": "0.5.0",
"description": "A tiny, zero dependency, shuttle (a.k.a list shuttle, dual listbox, etc.) implementation in React using hooks.",
"repository": {
"url": "https://github.com/atomicpages/react-accessible-shuttle"
},
"scripts": {
"preinstall": "npx check-node-version --npm '>=7'",
"prepare": "husky install",
"test": "jest",
"test:fast": "jest --collectCoverage=false",
"build": "npm-run-all -p clean lint && npm-run-all build:css build:pika clean:css",
"build:css": "sass -s compressed --no-charset --embed-sources src/styles/** ./css/shuttle.css",
"build:pika": "pika build",
"build:test": "npm run clean && tsc src/index.ts --pretty --jsx react --esModuleInterop --downLevelIteration --outDir pkg",
"clean": "rimraf pkg/",
"clean:css": "rimraf css/",
"version": "npm run build",
"lint": "eslint 'src/**/*.{ts,tsx,js,json}'"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg",
{
"excludes": "playground/**"
}
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-node"
],
[
"pika-plugin-legacy-browser",
{
"name": "ReactShuttle",
"minify": true,
"external": [
"react"
],
"globals": {
"react": "React"
},
"sourcemap": true
}
],
[
"pika-plugin-typedefs-to-flow",
{
"tolerateFailures": true
}
],
[
"@pika/plugin-copy-assets",
{
"files": [
"css/"
]
}
]
]
},
"keywords": [
"shuttle",
"dual listbox",
"list shuttle",
"hooks"
],
"author": "Dennis Thompson",
"maintainers": [
"Dennis Thompson"
],
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@djthoms/eslint-config": "^3.0.0",
"@djthoms/prettier-config": "^4.0.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-umd": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-copy-assets": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/bluebird": "^3.5.29",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"bluebird": "^3.7.2",
"coveralls": "^3.0.9",
"eslint": "^7.0.0",
"flowgen": "^1.10.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"npm-run-all": "^4.1.5",
"pika-plugin-legacy-browser": "^1.2.0",
"pika-plugin-typedefs-to-flow": "^0.0.3",
"prettier": "^2.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"sass": "^1.26.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.0.0"
},
"prettier": "@djthoms/prettier-config",
"lint-staged": {
"*.{js,ts,tsx,json}": [
"prettier --write",
"eslint --fix"
],
"*.{md,yml,yaml}": "prettier --write"
},
"dependencies": {
"clsx": "^1.1.1"
}
}