generated from the-holocron/stormtrooper
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.04 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
{
"name": "@theholocron/klaxon",
"description": "Klaxon is the loudest way to debug within the Galaxy.",
"homepage": "https://github.com/the-holocron/klaxon#readme",
"author": "Newton Koumantzelis",
"version": "1.1.0",
"main": "dist/index.js",
"module": "src/index.js",
"files": [
"dist",
"src"
],
"repository": "https://github.com/the-holocron/klaxon.git",
"bugs": "https://github.com/the-holocron/klaxon/issues",
"releases": "https://github.com/the-holocron/klaxon/releases",
"wiki": "https://github.com/the-holocron/klaxon/wiki",
"license": "GPL-3.0",
"alex": {
"allow": [
"color",
"colors",
"dead",
"disabled",
"invalid"
]
},
"babel": {
"presets": [
"@theholocron"
]
},
"browserslist": [
"extends @theholocron/browserslist-config"
],
"commitlint": {
"extends": [
"@theholocron"
]
},
"eslintConfig": {
"extends": "@theholocron"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged --config @theholocron/lint-staged-config"
}
},
"jest": {
"preset": "@theholocron/jest-preset"
},
"publishConfig": {
"access": "public"
},
"release": {
"extends": "@theholocron/semantic-release-config",
"branches": [
"main"
]
},
"stylelint": {
"extends": "@theholocron"
},
"scripts": {
"commit": "commit",
"dist": "babel src -d dist --source-maps",
"lint": "eslint . --ignore-path .gitignore",
"test:docs": "alex .",
"test:js": "jest --passWithNoTests",
"test": "npm run test:docs && npm run test:js"
},
"devDependencies": {
"@theholocron/babel-preset": "latest",
"@theholocron/browserslist-config": "latest",
"@theholocron/commitlint-config": "latest",
"@theholocron/eslint-config": "latest",
"@theholocron/jest-preset": "latest",
"@theholocron/lint-staged-config": "latest",
"@theholocron/markdownlint-config": "latest",
"@theholocron/semantic-release-config": "latest",
"alex": "^8.1.1"
}
}