This repository was archived by the owner on Apr 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.87 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.87 KB
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
{
"version": "1.0.2",
"name": "@strv/react-sliders",
"description": "CSS agnostic React Sliders",
"keywords": [
"react",
"sliders",
"css-agnostic",
"hooks",
"headless"
],
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/react-slider.esm.js",
"engines": {
"node": ">=10"
},
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"author": "Lukas Hudec <lukas.hudec@strv.com>",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/strvcom/react-sliders.git"
},
"bugs": {
"url": "https://github.com/strvcom/react-sliders/issues"
},
"scripts": {
"dev": "tsdx watch",
"build": "tsdx build",
"prepare": "tsdx build",
"_prettier": "prettier \"**/*.+(js|jsx|ts|tsx|json|css|less|graphql|md|mdx)\"",
"prettier:format": "npm run _prettier -- --write",
"prettier:validate": "npm run _prettier -- --list-different",
"lint": "npm run lint:js",
"lint:js": "eslint --ext js,jsx,ts,tsx src",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:watch": "tsdx test --watch --verbose --env=jest-environment-jsdom-sixteen",
"test:coverage": "tsdx test --coverage --env=jest-environment-jsdom-sixteen",
"test:e2e:cli": "cypress run --browser=chrome",
"test:e2e:gui": "cypress open",
"analyze:bundle": "source-map-explorer dist/*.js"
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@commitlint/cli": "^9.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@strv/commitlint-config": "^1.1.0",
"@strv/eslint-config-react": "^3.1.2",
"@strv/eslint-config-typescript": "^2.3.0",
"@strv/prettier-config": "^1.0.3",
"@testing-library/cypress": "^6.0.0",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.6",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.1",
"babel-loader": "^8.1.0",
"css-loader": "^4.2.2",
"cypress": "^4.11.0",
"cypress-react-unit-test": "^4.11.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"husky": "^4.2.5",
"is-ci-cli": "^2.1.2",
"jest-environment-jsdom-sixteen": "^1.0.3",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.0",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"semantic-release": "^17.1.1",
"source-map-explorer": "^2.4.2",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.1",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.7",
"webpack": "^4.43.0"
}
}