-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.65 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
{
"name": "open-source-starter",
"version": "1.1.7",
"description": "Open source project starter",
"main": "index.js",
"author": "Jimmy Beldone <dev.jimmy.beldone@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/JimmyBeldone/open-source-starter.git"
},
"bugs": {
"email": "dev.jimmy.beldone@gmail.com",
"url": "https://github.com/JimmyBeldone/open-source-starter/issues"
},
"scripts": {
"commit": "git-cz",
"setup": "node setup/setupMessage.js && yarn && node setup/setup.js",
"setup:copy": "rimraf setupCopy && cp ./package.json ./setup/package.json && cp -r ./setup ./setupCopy",
"setup:test": "yarn setup:copy && node setup/setupMessage.js && yarn && yarn setup:test:init",
"setup:test:init": "cross-env MODE=test node setup/setup.js",
"lint": "eslint src --fix",
"pretty": "prettier --write 'src/**/*.js'",
"test": "jest --coverage",
"prepare": "yarn clean && cross-env NODE_ENV=production yarn build && husky install",
"clean": "rimraf ./dist",
"build": "babel src --out-dir dist --ignore 'src/**/*.spec.js','src/**/*.test.js'",
"semantic-release": "semantic-release"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.8",
"@babel/preset-env": "7.16.11",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"babel-eslint": "10.1.0",
"babel-jest": "27.5.1",
"chalk": "5.0.1",
"commitizen": "4.2.4",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"devmoji": "2.3.0",
"eslint": "8.11.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.1",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.3.7",
"prettier": "2.6.0",
"prompts": "2.4.2",
"replace": "1.2.1",
"rimraf": "3.0.2",
"semantic-release": "19.0.2"
},
"lint-staged": {
"{src}/**/*.js": [
"eslint --fix",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"boilerplate",
"starterkit",
"starter kit",
"starter",
"webpack",
"open source",
"code formatter",
"babel"
],
"dependencies": {}
}