-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.75 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
{
"name": "final-space-course",
"version": "1.0.1",
"description": "An open source library to return the final space characters",
"main": "dist/main.js",
"repository": "git@github.com:fabioctetsuo/final-space-course.git",
"author": "fabioctetsuo@gmail.com",
"license": "MIT",
"private": false,
"keywords": [
"random",
"final",
"space"
],
"bugs": {
"url": "https://github.com/fabioctetsuo/final-space-course/issues"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"branches": [
"master"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"lint": "eslint .",
"prebuild": "rimraf dist",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"test": "jest --coverage",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json)\" \"!package.json\"",
"format": "yarn run prettier --write",
"check-format": "yarn run prettier --list-different",
"validate": "npm-run-all --parallel check-format test build",
"semantic-release": "semantic-release",
"commit": "npx git-cz"
},
"dependencies": {
"jest": "^26.6.3",
"unique-random-array": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"babel-loader": "^8.2.2",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^6.15.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.2",
"validate-commit-msg": "^2.14.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
}
}