-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "vue-material-design-icons",
"version": "3.2.0",
"author": "Rob Cresswell <[email protected]>",
"license": "MIT",
"description": "A collection of material design icons as Vue single file components",
"repository": "github:robcresswell/vue-material-design-icons",
"keywords": [
"vue",
"material design icons",
"mdi",
"icons",
"material",
"icon",
"svg",
"vue.js",
"material design"
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@mdi/js": "7.4.47",
"@types/node": "^18.11.18",
"@vue/test-utils": "1.2.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^29.4.1",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-serializer-vue": "2.0.2",
"p-map": "^4.0.0",
"prettier": "^2.8.3",
"regenerator-runtime": "^0.13.11",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vue": "^2.7.14",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.7.14"
},
"homepage": "https://github.com/robcresswell/vue-material-design-icons",
"bugs": {
"url": "https://github.com/robcresswell/vue-material-design-icons/issues"
},
"scripts": {
"prebuild": "rm -rf dist/",
"build": "./build.ts",
"postbuild": "cp styles.css package.json README.md dist/",
"format": "prettier --write **/*.{js,vue}",
"test": "jest"
}
}