forked from atomiks/tippyjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.76 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
{
"name": "tippy.js",
"version": "3.1.3",
"description": "Vanilla JS Tooltip & Popover Library",
"main": "dist/tippy.all.js",
"module": "dist/esm/tippy.standalone.js",
"types": "index.d.ts",
"author": "atomiks",
"license": "MIT",
"keywords": [
"tooltip",
"popover",
"tippy",
"tippy.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/atomiks/tippyjs.git"
},
"scripts": {
"dev:docs": "parcel website/index.html -d .devserver --no-cache --open",
"build:docs": "node website/clean.js && parcel build website/index.html -d docs/ --public-url ./ && node website/prerender.js",
"dev": "parcel tests/visual/index.html -d tests/visual/dist --open",
"build": "node ./scripts/build.js && npm run build:docs",
"test": "eslint \"src/**/*.js\" && jest --coverage",
"prettier": "prettier --write \"./**/*{js,scss}\"",
"release": "npm test && npm run build && git add . && git commit -am $npm_package_version && git tag v$npm_package_version && git push origin master && git push --tags && npm publish"
},
"jest": {
"setupFiles": [
"./tests/polyfills/createRange.js",
"./tests/polyfills/MutationObserver.js",
"./tests/polyfills/window.js"
],
"coveragePathIgnorePatterns": [
"tests"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"browserslist": [
"> 0.5%"
],
"alias": {
"~": "src"
},
"devDependencies": {
"@hyperapp/render": "^2.0.0",
"autoprefixer": "^6.7.7",
"babel-core": "^6.26.3",
"babel-jest": "^22.4.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-2": "^6.24.1",
"caniuse-lite": "^1.0.30000856",
"colorette": "^1.0.4",
"cssnano": "^3.10.0",
"eslint": "^4.18.2",
"filesize": "^3.6.1",
"focus-visible": "^4.1.4",
"gzip-size": "^5.0.0",
"hyperapp": "^1.2.6",
"jest": "^23.5.0",
"jsdom": "^11.11.0",
"mutation-observer": "^1.0.3",
"node-sass": "^4.9.0",
"normalize.css": "^8.0.0",
"parcel-bundler": "^1.9.7",
"parcel-plugin-markdown-string": "^1.3.2",
"postcss": "^5.2.18",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"prettier": "^1.14.2",
"prismjs": "^1.15.0",
"rollup": "^0.55.5",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-babel-minify": "^4.0.0",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-css-only": "^0.2.0",
"rollup-plugin-json": "^2.3.1",
"rollup-plugin-node-resolve": "^3.2.0",
"rollup-plugin-sass": "^0.4.10",
"rollup-plugin-strip": "^1.1.1",
"twemoji": "^11.0.1"
},
"dependencies": {
"popper.js": "^1.14.5"
}
}