-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.92 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
{
"name": "fontawesome-svg-mdi",
"version": "1.0.1",
"description": "A tool to allow you to use Material Design Icons with the Fontawesome SVG javascript library",
"module": "lib/mdi-fa.js",
"scripts": {
"test": "jest",
"lint": "eslint --ext .js ./",
"build": "babel src -d lib",
"prepublishOnly": "npm run build",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjdavey/fontawesome-svg-mdi.git"
},
"author": "Tristan Davey <tristan@tristandavey.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjdavey/fontawesome-svg-mdi/issues"
},
"homepage": "https://github.com/tjdavey/fontawesome-svg-mdi#readme",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@mdi/js": "^5.9.55",
"babel-jest": "^27.0.6",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.6",
"jsdom": "^17.0.0"
},
"jest": {
"setupFiles": [
"./test/mocks/dom.js"
]
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"extends": [
"standard",
"plugin:jest/recommended"
],
"plugins": [
"jest"
],
"rules": {
"comma-dangle": [
"error",
"always-multiline"
],
"semi": [
"error",
"always"
]
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"@babel/plugin-transform-modules-commonjs",
"add-module-exports"
]
}
}