-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 3.34 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "brands",
"version": "0.0.0-development",
"description": "An open source set of SVG brand icons",
"main": "dist/brands.js",
"unpkg": "dist/brands.min.js",
"files": [
"dist"
],
"scripts": {
"all": "npm-run-all --sequential build lint cover",
"lint": "xo",
"lint:fix": "xo --fix",
"test": "npm-run-all test:node test:browser",
"test:node": "ava --config .ava.node.config.js",
"test:browser": "ava --config .ava.browser.config.js",
"cover": "npm-run-all --sequential cover:browser cover:node cover:report",
"cover:all": "npm-run-all --sequential cover:browser cover:node",
"cover:node": "nyc --no-clean npm run test:node",
"cover:browser": "nyc npm run test:browser",
"cover:report": "nyc report --reporter=text-lcov | coveralls",
"build": "./bin/build.sh",
"build:lib": "npm-run-all build:lib:dev build:lib:prod",
"build:lib:dev": "npx webpack --mode development",
"build:lib:prod": "npx webpack --mode production",
"import": "./bin/import.sh",
"export": "./bin/export.sh"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": "xo --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit"
}
},
"nyc": {
"include": [
"src/*.js",
"util/helpers/*.js"
],
"all": true
},
"xo": {
"overrides": [
{
"files": "bin/*.js",
"rules": {
"import/no-extraneous-dependencies": 0
}
},
{
"files": "webpack.config.js",
"rules": {
"import/no-extraneous-dependencies": 0
}
},
{
"files": "examples/*.js",
"rules": {
"no-undef": 0,
"unicorn/prefer-query-selector": 0
}
}
]
},
"eslintConfig": {
"extends": "eslint-config-xo"
},
"repository": {
"type": "git",
"url": "https://github.com/brand-icons/brands.git"
},
"keywords": [
"brands",
"icons"
],
"author": "Ryan DiMascio <[email protected]> (https://ryan.dimasc.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/brand-icons/brands.git/issues"
},
"homepage": "https://github.com/brand-icons/brands.git#readme",
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"ava": "^3.10.1",
"aws-sdk": "^2.713.0",
"axios": "^0.19.2",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"browser-env": "^3.3.0",
"chalk": "^4.1.0",
"commitizen": "^4.1.2",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.4.0",
"eslint-config-xo": "^0.32.0",
"eslint-plugin-ava": "^10.4.0",
"esm": "^3.2.25",
"figma-js": "^1.10.1",
"husky": "^4.2.5",
"jsdom": "^16.3.0",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"ora": "^4.0.4",
"prettier": "^2.0.5",
"semantic-release": "^17.1.1",
"svgo": "^1.3.2",
"terser-webpack-plugin": "^3.0.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"xo": "^0.32.1"
},
"dependencies": {
"get-attributes": "^1.0.5",
"to-class": "^1.3.1"
}
}