-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
78 lines (78 loc) · 1.96 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
{
"name": "carbon-icons",
"version": "7.0.1",
"description": "Icons for the Carbon Design System",
"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": "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": "lint-staged",
"build": "gulp build && gulp copy && gulp build:data",
"test": "jest",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/carbon-design-system/carbon-icons"
},
"keywords": [
"icons",
"bluemix",
"ibm",
"carbon"
],
"files": [
"dist"
],
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"bluebird": "^3.5.0",
"chalk": "^2.4.1",
"del": "^3.0.0",
"express": "^4.16.3",
"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.4.0",
"gulp-svgo": "^1.5.4",
"husky": "^0.14.3",
"jest": "^23.0.1",
"lint-staged": "^7.1.2",
"nodemon": "^1.17.5",
"npm-run-all": "^4.0.2",
"prettier": "^1.13.2",
"remove-svg-properties": "^0.3.3",
"semantic-release": "^15.5.0",
"smart-svg-path": "^1.0.3",
"svg-points": "^6.0.1",
"svgxuse": "^1.2.6",
"xml2js": "^0.4.19"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{scss,css,js,md}": [
"yarn format",
"git add"
]
},
"prettier": {
"jsxBracketSameLine": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5"
}
}