-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.74 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
{
"name": "searchable-dropdown",
"version": "1.0.0",
"description": "Searchable Dropdown",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"scripts": {
"dev": "rollup -c ./config/rollup.config.js -w",
"build": "rollup -c ./config/rollup.config.js",
"build:types": "tsc -p ./config/tsconfig.json --outDir dist/build --declaration true && api-extractor run",
"lint": "tslint --config ./config/tslint.json --project ./config/tsconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.ts\" --config ./config/.prettierrc",
"docs": "typedoc src --tsconfig ./config/tsconfig.json --out docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teofanis/npm-searchable.git"
},
"keywords": [
"searchable",
"dropdown"
],
"author": "Teofanis Papadopulos",
"license": "ISC",
"bugs": {
"url": "https://github.com/teofanis/npm-searchable/issues"
},
"homepage": "https://github.com/teofanis/npm-searchable#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.1",
"@types/lodash": "^4.14.180",
"eslint": "^8.11.0",
"prettier": "^2.6.0",
"rollup": "^2.70.1",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@microsoft/api-extractor": "^7.19.5",
"@reduxjs/toolkit": "^1.8.0",
"lodash": "^4.17.21",
"react-redux": "^7.2.6",
"rollup-plugin-node-globals": "^1.4.0",
"typedoc": "^0.22.13"
}
}