forked from atomiks/tippyjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 2.8 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "tippy.js",
"version": "4.3.4",
"description": "Highly customizable tooltip and popover library",
"main": "./umd/index.all.js",
"module": "./esm/index.all.js",
"unpkg": "./umd/index.all.min.js",
"types": "index.d.ts",
"author": "atomiks",
"contributors": [
"Brett Zamir"
],
"license": "MIT",
"bugs": "https://github.com/atomiks/tippyjs/issues",
"homepage": "https://atomiks.github.io/tippyjs/",
"keywords": [
"tooltip",
"popover",
"tippy",
"tippy.js"
],
"files": [
"umd",
"esm",
"themes",
"index.css",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/atomiks/tippyjs.git"
},
"scripts": {
"dev": "parcel demo/index.html -d .devserver --open",
"build": "node rollup.build.js && bundlesize",
"test": "jest --coverage",
"check-types": "tsc",
"lint": "eslint --report-unused-disable-directives .",
"clean": "rimraf umd esm themes coverage .devserver .cache ./index.css",
"prepare": "npm run clean && npm run build"
},
"jest": {
"setupFiles": [
"./test/setup.js"
],
"testRegex": "./test/.*.test.js$"
},
"browserslist": [
"> 0.25%",
"not dead",
"not safari < 8"
],
"bundlesize": [
{
"path": "./esm/index.min.js",
"maxSize": "7 kB"
},
{
"path": "./index.css",
"maxSize": "2 kB"
}
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"jest --findRelatedTests",
"eslint",
"git add"
],
"{build,src,test,website/src}/**/*.{ts,js,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"autoprefixer": "^9.5.0",
"babel-jest": "^24.5.0",
"bundlesize": "^0.17.2",
"colorette": "^1.0.8",
"cssnano": "^4.1.10",
"eslint": "^5.12.0",
"eslint-config-prettier": "^4.3.0",
"husky": "^1.3.1",
"jest": "^24.0.0",
"lint-staged": "^8.1.7",
"node-sass": "^4.10.0",
"parcel-bundler": "^1.12.3",
"postcss": "^7.0.14",
"prettier": "^1.17.1",
"promise": "^8.0.3",
"rimraf": "^2.6.3",
"rollup": "^1.13.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-css-only": "^0.4.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sass": "^1.1.0",
"rollup-plugin-terser": "^4.0.3",
"typescript": "^3.5.1"
},
"dependencies": {
"popper.js": "^1.14.7"
}
}