-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "@dab-code/toolio",
"version": "1.2.6",
"description": "Toolio - Accessible tooltips in a lightweight and easy-to-use package",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"keywords": [
"tooltip",
"tooltips",
"tool tip",
"tool",
"accessible tooltip"
],
"homepage": "http://github.com/dab-code/toolio",
"bugs": {
"url": "http://github.com/dab-code/toolio/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "[email protected]:dab-code/toolio.git"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c -w",
"prepublish:public": "npm run build && npm version patch --force",
"publish:public": "npm run build && npm version patch && npm publish --access public"
},
"author": "Dann Bos",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.45.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-import-css": "^3.0.3",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"sass": "^1.49.9",
"typescript": "^4.2.4"
}
}