forked from carbon-design-system/carbon-icons
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
98 lines (98 loc) · 2.53 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
{
"name": "@wfp/icons",
"version": "0.2.2",
"description": "Icons for the WFP UI",
"main": "dist/carbon-icons.js",
"module": "dist/carbon-icons.es.js",
"private": false,
"scripts": {
"ci-check": "yarn build && yarn format:diff && yarn test --runInBand",
"commitmsg:legacy": "commitlint -e $GIT_PARAMS",
"dev": "nodemon -e html,svg src/test-server.js",
"format": "prettier --write \"**/*.{scss,css,js,md,ts}\"",
"format:diff": "prettier --list-different \"**/*.{scss,css,js,md,ts}\"",
"prebuild": "gulp clean",
"precommit:legacy": "lint-staged",
"build": "gulp build && gulp copy && gulp build:data",
"preinstall:legacy": "npx npm-force-resolutions",
"test": "jest",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/wfp/carbon-icons.git"
},
"types": "dist/types/index.d.ts",
"keywords": [
"WFP",
"World Food Programme",
"UN",
"United Nations",
"icons",
"bluemix",
"ibm",
"carbon"
],
"files": [
"dist"
],
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"bluebird": "^3.5.5",
"chalk": "^2.4.2",
"del": "^3.0.0",
"express": "^4.17.1",
"gh-pages": "0.11.0",
"gulp": "^3.9.1",
"gulp-dom": "^0.9.17",
"gulp-edit-xml": "^3.0.0",
"gulp-rename": "1.2.2",
"gulp-svg-sprite": "^1.5.0",
"gulp-svgo": "^1.5.4",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"nodemon": "^1.19.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"remove-svg-properties": "^0.3.3",
"smart-svg-path": "^1.0.3",
"svg-points": "^6.0.1",
"svgxuse": "^1.2.6",
"xml2js": "^0.4.22"
},
"resolutions": {
"graceful-fs": "^4.2.9",
"css-what": "^3.2.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{scss,css,js,md}": [
"yarn format",
"git add"
]
},
"prettier": {
"jsxBracketSameLine": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"natives": "^1.1.6",
"semantic-release": "^19.0.2",
"semantic-release-ado": "^1.3.1"
}
}