This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
forked from sghall/react-compound-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.37 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
{
"name": "@marklogic/react-compound-slider",
"version": "3.0.0",
"license": "MIT",
"author": "MarkLogic",
"desciption": "Modified version of react-compound-slider to work with MarkLogic Hub Central",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"modules": "dist/rcs.esm.js",
"files": [
"dist"
],
"scripts": {
"dev": "npm run clean && npm-run-all --parallel watch:*",
"watch:js": "rollup -c -w",
"watch:ts": "tsc --watch --outDir dist/types --emitDeclarationOnly",
"clean": "rimraf dist",
"build": "babel-node scripts/build --extensions .ts",
"test": "jest"
},
"peerDependencies": {
"react": ">=16.9"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/bluebird": "^3.5.32",
"@types/chai": "^4.2.11",
"@types/d3-array": "^2.0.0",
"@types/enzyme": "^3.10.5",
"@types/fs-extra": "^8.1.1",
"@types/jest": "^24.9.1",
"@types/node": "^13.13.13",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/sinon": "^7.5.2",
"@types/warning": "^3.0.0",
"bluebird": "^3.7.2",
"chai": "^4.2.0",
"chalk": "^3.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"fs-extra": "^8.1.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"mkdirp": "^0.5.5",
"npm-run-all": "^4.1.5",
"progress-estimator": "^0.2.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
"sinon": "^8.1.1",
"ts-jest": "^25.5.1",
"tslib": "^1.13.0",
"typescript": "^3.9.6"
},
"dependencies": {
"@babel/runtime": "^7.10.4",
"d3-array": "^2.4.0",
"warning": "^4.0.3"
}
}