-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.36 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
{
"name": "@useblu/ocean-tokens",
"version": "3.8.1",
"private": false,
"description": "Design Tokens for the Ocean Design System",
"scripts": {
"prepare": "is-ci || husky install",
"build": "gulp",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint '.'",
"lint:fix": "eslint '.' --fix",
"predeploy:doc": "gulp build:doc",
"deploy:doc": "gh-pages -d static",
"cm": "cz",
"version": "prettier --write 'CHANGELOG.md'",
"postversion": "cp -r package.json .."
},
"keywords": [
"design-tokens",
"theo",
"design-system"
],
"homepage": "https://ocean-ds.github.io/ocean-tokens/",
"bugs": "https://github.com/ocean-ds/ocean-tokens/issues",
"license": "GPL-3.0",
"author": "Blu Pagamentos <[email protected]>",
"repository": "git+https://github.com/ocean-ds/ocean-tokens.git",
"dependencies": {
"gulp": "^4.0.2",
"gulp-dom": "^1.0.0",
"gulp-load-plugins": "^2.0.7",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^5.0.1",
"immutable": "^4.0.0",
"lodash": "^4.17.21",
"theo": "^8.1.5",
"through2": "^4.0.2",
"vinyl": "^2.2.1",
"xml": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^17.0.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"cz-conventional-changelog": "3.3.0",
"del": "^6.0.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"gh-pages": "^3.2.1",
"gulp-rename": "^2.0.0",
"gulp-theo": "^2.0.1",
"gulp-util": "^3.0.8",
"husky": "^7.0.0",
"is-ci": "^3.0.0",
"postcss": "8.4.31",
"prettier": "^2.5.0",
"pretty-quick": "^3.1.2",
"semantic-release": "^19.0.0"
},
"engines": {
"node": ">=12.8.0",
"yarn": ">=1.22.0"
},
"prettier": {
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"sideEffects": false
}