-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
74 lines (74 loc) · 1.84 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
{
"name": "@justeat/f-icons",
"description": "Common icons for use in Fozzie projects.",
"version": "4.13.0",
"main": "dist/f-icons.js",
"unpkg": "dist/f-icons.min.js",
"files": [
"dist"
],
"homepage": "https://github.com/justeat/f-icons",
"contributors": [
"Github contributors <https://github.com/justeat/f-icons/graphs/contributors>",
"Cole Bemis <cole@colebemis.com> (http://colebemis.com)"
],
"repository": {
"type": "git",
"url": "git@github.com:justeat/f-icons.git"
},
"bugs": {
"url": "https://github.com/justeat/f-icons/issues"
},
"license": "Apache-2.0",
"engines": {
"node": ">=10.0.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"testURL": "http://localhost/"
},
"devDependencies": {
"@justeat/browserslist-config-fozzie": "1.2.0",
"@justeat/eslint-config-fozzie": "3.4.1",
"babel-cli": "6.26.0",
"babel-loader": "7.1.1",
"babel-preset-env": "1.7.0",
"babel-preset-stage-2": "6.24.1",
"cheerio": "1.0.0-rc.2",
"classnames": "2.2.6",
"concurrently": "5.3.0",
"danger": "10.6.2",
"eslint": "7.19.0",
"eslint-plugin-import": "2.22.1",
"html-minifier": "3.5.8",
"husky": "0.14.3",
"jest": "22.4.4",
"lint-staged": "10.5.3",
"npm-run-all": "4.1.5",
"prettier": "1.8.2",
"svgo": "1.3.2",
"webpack": "4.43.0",
"webpack-cli": "3.3.12"
},
"keywords": [
"fozzie"
],
"scripts": {
"prepare": "yarn build && yarn test:coverage",
"all": "npm-run-all --sequential build lint test:coverage",
"build": "./bin/build.sh",
"lint": "eslint .",
"test": "jest",
"test:coverage": "jest --coverage",
"precommit": "lint-staged"
},
"browserslist": [
"extends @justeat/browserslist-config-fozzie"
],
"assets": {
"root": "dist/",
"glob": "icons/**/*"
}
}