-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.59 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
{
"name": "@nodis-com-br/math",
"version": "1.3.3",
"description": "Library of general resources to be consumed by another frontend projects.",
"repository": "git://github.com/nodis-com-br/math.git",
"author": "Thiago Oliveira <[email protected]>",
"contributors": [
"Yuri Azevedo <[email protected]>"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"publish-package": "yarn build && yarn publish --access restricted",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json|ts|tsx)\"",
"eslint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"lint": "run-p code-style:**",
"code-style:typescript": "tsc --noEmit",
"code-style:eslint": "jest --config test/jest.lint.js",
"code-style:prettier": "yarn prettier -- --check",
"format": "run-s format:**",
"format:eslint": "yarn eslint --quiet --fix",
"format:prettier": "yarn prettier -- --write",
"clean": "rm -rf node_modules yarn.lock && yarn",
"cm": "git add . && git-cz"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "25.1.0",
"@typescript-eslint/eslint-plugin": "2.18.0",
"@typescript-eslint/parser": "2.18.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-prettier": "3.1.2",
"git-cz": "3.3.0",
"husky": "3.1.0",
"is-ci-cli": "2.0.0",
"jest": "25.1.0",
"jest-runner-eslint": "0.7.6",
"jest-sonar-reporter": "2.0.0",
"jest-watch-select-projects": "2.0.0",
"jest-watch-typeahead": "0.4.2",
"lint-staged": "9.5.0",
"prettier": "1.19.1",
"rollup": "1.27.3",
"rollup-plugin-typescript2": "0.25.2",
"ts-jest": "25.0.0",
"typescript": "3.7.2",
"yarn-run-all": "3.1.1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"yarn code-style:eslint --passWithNoTests",
"yarn test:coverage --passWithNoTests"
],
"*.{js,json,ts,md}": [
"yarn format:prettier"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"jestSonar": {
"reportPath": "coverage",
"reportFile": "sonar-report.xml"
}
}