Skip to content

Commit 868a2d9

Browse files
committed
UPdate version
1 parent 9b25144 commit 868a2d9

File tree

1 file changed

+24
-8
lines changed

1 file changed

+24
-8
lines changed

package.json

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
{
22
"name": "path-pattern",
3-
"version": "1.1.0",
3+
"version": "0.0.0-development",
44
"description": "A url matching lib to go with Realytics/react-router-magic",
55
"author": "Etienne Dldc <etienne.dldc@outlook.fr>",
66
"license": "MIT",
77
"main": "lib/index.js",
88
"types": "lib/index.d.ts",
9-
"keywords": ["path", "url", "routing", "pattern", "regexp", "matching", "router"],
9+
"keywords": [
10+
"path",
11+
"url",
12+
"routing",
13+
"pattern",
14+
"regexp",
15+
"matching",
16+
"router"
17+
],
1018
"scripts": {
1119
"build": "webpack lib/index.js",
1220
"build-stats": "NODE_ENV=production webpack lib/index.js --json > stats.json",
@@ -20,7 +28,7 @@
2028
},
2129
"repository": {
2230
"type": "git",
23-
"url": "git+ssh://git@github.com/Realytics/path-pattern.git"
31+
"url": "https://github.com/Realytics/path-pattern.git"
2432
},
2533
"dependencies": {
2634
"path-to-regexp": "^2.1.0"
@@ -29,21 +37,29 @@
2937
"@types/jest": "22.1.0",
3038
"cross-env": "^5.1.3",
3139
"jest": "^22.1.4",
40+
"semantic-release": "^12.2.5",
3241
"ts-jest": "^22.0.1",
3342
"ts-loader": "^3.3.1",
3443
"tslint": "^5.9.1",
3544
"tslint-loader": "^3.5.3",
3645
"typescript": "^2.6.2",
37-
"webpack": "^3.10.0",
38-
"semantic-release": "^12.2.5"
46+
"webpack": "^3.10.0"
3947
},
4048
"jest": {
4149
"transform": {
4250
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
4351
},
44-
"moduleFileExtensions": ["ts", "tsx", "js"],
45-
"collectCoverageFrom": ["src/**/*"],
46-
"coveragePathIgnorePatterns": ["/src/.*\\.d\\.ts$"],
52+
"moduleFileExtensions": [
53+
"ts",
54+
"tsx",
55+
"js"
56+
],
57+
"collectCoverageFrom": [
58+
"src/**/*"
59+
],
60+
"coveragePathIgnorePatterns": [
61+
"/src/.*\\.d\\.ts$"
62+
],
4763
"testRegex": "/test/.*\\.spec\\.(ts|tsx|js)$",
4864
"mapCoverage": true
4965
},

0 commit comments

Comments
 (0)