-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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
{
"name": "concisicons",
"version": "1.0.1",
"description": "A simple html and css only toggle button",
"author": "Andrew Grant <[email protected]>",
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build-lib": "vue-cli-service build --target lib src/index.ts && npm pack && shx mv ./concisicons-1.0.0.tgz ..",
"lint": "vue-cli-service lint"
},
"files": [
"dist/*",
"types/*"
],
"dependencies": {
"vue": "2.6.11"
},
"main": "dist/concisicons.umd.js",
"module": "dist/concisicons.esm.js",
"unpkg": "dist/concisicons.min.js",
"types": "./types/index.d.ts",
"devDependencies": {
"@rollup/plugin-alias": "^3.1.2",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-plugin-typescript": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.0.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.5.0",
"node-sass": "^4.0.0",
"prettier": "^2.2.1",
"sass-loader": "10.0.1",
"shx": "^0.3.3",
"typescript": "~3.9.3",
"vue-template-compiler": "2.6.11"
}
}