-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.56 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.56 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
{
"name": "macos-multi-select",
"version": "0.5.7",
"description": "Given an Index, and an Action, return an array of selected keys with the same behaviour of macOS finder list view selection.",
"main": "dist/commonjs/index.js",
"module": "dist/esm/index.js",
"repository": "git@github.com:codingedgar/macos-multi-select.git",
"author": "codingedgar <codingedgar@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"watch-test": "jest --watch",
"build": "rm -rf dist && tsc --module commonjs --outDir './dist/commonjs' && tsc",
"prepare": "husky install && yarn build",
"build-demo": "parcel build --public-url ./ -d docs demo/index.html",
"watch-demo": "parcel serve -d docs-dev --port 3000 --hmr-port 3001 demo/index.html",
"updatePath": "sed -i -- 's/files/.\\//g' dist/files/*.css",
"lint": "eslint src/*",
"pre-commit": "npx concurrently \"yarn lint\" \"tsc\""
},
"bugs": {
"url": "https://github.com/codingedgar/macos-multi-select/issues"
},
"devDependencies": {
"@types/jest": "29.5.2",
"@types/ramda": "types/npm-ramda#dist",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"concurrently": "^6.2.1",
"eslint": "^7.32.0",
"fast-check": "2.25.0",
"husky": "^7.0.2",
"jest": "29.5.0",
"parcel-bundler": "^1.12.5",
"ts-jest": "29.1.0",
"typescript": "5.1.3"
},
"dependencies": {
"ramda": "^0.27.1"
}
}