-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.79 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
{
"name": "tab-goto",
"description": "Control where `tab` or `shift+tab` goto.",
"version": "0.1.1",
"main": "dist/index.js",
"module": "esm/index.js",
"unpkg": "dist/index.min.js",
"jsdelivr": "dist/index.min.js",
"types": "index.d.ts",
"scripts": {
"prepublishOnly": "yarn build && yarn test",
"dev": "rollup -c -w",
"build": "rimraf dist esm && tsc && rollup -c",
"test": "karma start --single-run",
"dev-test": "karma start",
"watch:css": "cross-env NODE_ENV=production tailwindcss -o tailwind.css --watch",
"build:css": "cross-env NODE_ENV=production tailwindcss -o tailwind.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zjffun/tab-goto.git"
},
"author": "zjffun",
"license": "MIT",
"files": [
"dist",
"esm",
"src",
"index.d.ts"
],
"bugs": {
"url": "https://github.com/zjffun/tab-goto/issues"
},
"homepage": "https://github.com/zjffun/tab-goto#readme",
"keywords": [],
"dependencies": {},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"chai": "^4.3.4",
"codecov": "^3.8.2",
"cross-env": "^7.0.3",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^6.3.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.2.0",
"karma-firefox-launcher": "^2.1.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^5.5.1",
"karma-webpack": "^5.0.0",
"mocha": "^9.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.52.1",
"rollup-plugin-uglify": "^6.0.4",
"tailwindcss": "^3.2.1",
"ts-loader": "^9.2.3",
"tslib": "^2.4.1",
"typescript": "^4.3.2",
"webpack": "^5.40.0"
}
}