-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.82 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
{
"name": "@lppjunior/pattern-js",
"version": "1.3.1",
"description": "Pattern JS project is a collection of pattern implemented in JS",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "npm run test & npm run webpack",
"test": "standard & npm run jest",
"webpack": "webpack --mode production",
"standard": "standard",
"jest": "jest --verbose --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lppjunior/pattern-js.git"
},
"author": "Luiz Paulo <lppjunior@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/lppjunior/pattern-js/issues"
},
"homepage": "https://github.com/lppjunior/pattern-js#readme",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-jest": "^26.6.3",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"eslint": "^7.22.0",
"html-webpack-plugin": "^4.5.2",
"husky": "^4.3.8",
"jest": "^26.6.3",
"standard": "^14.3.4",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"transform": {
"^.+\\.js$": "babel-jest"
},
"roots": [
"<rootDir>"
],
"modulePaths": [
"<rootDir>"
],
"moduleDirectories": [
"node_modules",
"src"
]
},
"standard": {
"env": [
"jest"
],
"ignore": [
"/src-example/**/*.js",
"/dist/**/*.js"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}