Skip to content

Commit

Permalink
v8.0.0-beta.7
Browse files Browse the repository at this point in the history
  • Loading branch information
nebrelbug committed Feb 24, 2020
1 parent 95db6d9 commit bb9043e
Showing 1 changed file with 24 additions and 8 deletions.
32 changes: 24 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "squirrelly",
"version": "8.0.0-beta.6",
"version": "8.0.0-beta.7",
"description": "Lightweight, fast, and powerful JS template engine. Supports helpers, filters, template inheritance",
"keywords": [
"squirrelly",
Expand All @@ -18,7 +18,9 @@
"jsdelivr": "dist/browser/squirrelly.min.js",
"unpkg": "dist/browser/squirrelly.min.js",
"sideEffects": false,
"files": ["dist"],
"files": [
"dist"
],
"author": "Ben Gubler <nebrelbug@gmail.com>",
"repository": {
"type": "git",
Expand Down Expand Up @@ -47,7 +49,9 @@
"format": "prettier-standard --format '{src,test}/**/*.ts'"
},
"lint-staged": {
"{src,test}/**/*.ts": ["prettier-standard --lint"]
"{src,test}/**/*.ts": [
"prettier-standard --lint"
]
},
"config": {
"commitizen": {
Expand All @@ -60,8 +64,14 @@
},
"testEnvironment": "node",
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": ["ts", "js"],
"coveragePathIgnorePatterns": ["/node_modules/", "/test/"],
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 80,
Expand All @@ -70,17 +80,23 @@
"statements": 95
}
},
"collectCoverageFrom": ["src/{!(browser),}.ts"]
"collectCoverageFrom": [
"src/{!(browser),}.ts"
]
},
"standard": {
"ignore": ["dist"]
"ignore": [
"dist"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
Expand Down

0 comments on commit bb9043e

Please sign in to comment.