-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.72 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
{
"name": "@theholocron/astromech",
"homepage": "https://github.com/the-holocron/astromech#readme",
"description": "This utility droid provides a set of single-purpose, functional JavaScript and (S)CSS utilities for use within any modern front-end application or library.",
"author": "Newton Koumantzelis",
"version": "0.0.0",
"repository": "https://github.com/the-holocron/astromech.git",
"bugs": "https://github.com/the-holocron/astromech/issues",
"releases": "https://github.com/the-holocron/astromech/releases",
"wiki": "https://github.com/the-holocron/astromech/wiki",
"license": "GPL-3.0",
"alex": {
"allow": [
"color",
"colors",
"dead",
"disabled",
"invalid"
]
},
"commitlint": {
"extends": [
"@theholocron"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged --config @theholocron/lint-staged-config"
}
},
"release": {
"extends": "@theholocron/semantic-release-config",
"branch": "master"
},
"scripts": {
"bootstrap": "lerna exec npm install",
"commit": "commit",
"dist": "lerna run dist",
"toc": "lerna run toc",
"lint": "lerna run lint",
"prerelease": "npm run dist && lerna version --conventional-commits",
"release": "lerna publish from-package",
"test": "lerna exec npm test"
},
"devDependencies": {
"@hidoo/sassdoc-to-markdown": "^0.4.1",
"@theholocron/babel-preset": "latest",
"@theholocron/browserslist-config": "latest",
"@theholocron/commitlint-config": "latest",
"@theholocron/eslint-config": "latest",
"@theholocron/jest-preset": "latest",
"@theholocron/stylelint-config": "latest",
"lerna": "^3.20.2"
}
}