-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "jest-parser",
"description": "regexp-base library that parses jest files into an object",
"keywords": [
"jest",
"syntax",
"parser"
],
"author": "Martin Rafael Gonzalez <[email protected]>",
"version": "1.1.1",
"main": "dist/jest-parser.js",
"module": "dist/jest-parser.mjs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/devtin/jest-parser"
},
"scripts": {
"build": "rollup -c",
"build:live": "nodemon -w src --exec yarn build",
"lint": "eslint --ext .js --ignore-path .gitignore src/",
"test": "NODE_ENV=test jest",
"release": "standard-version -a"
},
"files": [
"dist/*",
"CHANGELOG.md",
"src/*"
],
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.21.0",
"eslint-plugin-jest": "^24.1.5",
"jest": "^26.6.3",
"jest-esm-transformer": "^1.0.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"rollup": "^2.40.0",
"standard-version": "^9.1.1"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:jest/recommended"
],
"parser": "babel-eslint",
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"jest"
]
},
"standard-version": {
"scripts": {
"prerelease": "npm run lint && npm run build && npm run test",
"precommit": "npm run --silent build > /dev/null 2>&1 && git add ."
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Chore"
},
{
"type": "docs",
"section": "Docs"
},
{
"type": "refactor",
"section": "Refactor"
},
{
"type": "style",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"section": "Tests"
}
]
}
}