-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.22 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
{
"name": "mtarh-url-utils",
"version": "0.0.8",
"description": "My own helpers for working with URLs",
"keywords": [
"npm-package",
"package",
"npm",
"mtarh",
"url",
"util"
],
"license": "MIT",
"author": "Maksim Tarhunakau",
"homepage": "https://github.com/BLRplex/mtarh-url-utils.git",
"repository": {
"type": "git",
"url": "https://github.com/BLRplex/mtarh-url-utils.git"
},
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/BLRplex/mtarh-url-utils/issues"
},
"main": "lib/index.js",
"typings": "declarations/index.d.ts",
"scripts": {
"clean": "rimraf ./coverage ./lib",
"dev": "cross-env NODE_ENV=development rollup -c -o lib/index.js",
"build": "cross-env NODE_ENV=production rollup -c -o lib/index.js",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"test:cover": "cross-env NODE_ENV=test jest --coverage",
"coveralls": "npm run test:cover && cat ./coverage/lcov.info | coveralls",
"flow": "flow",
"flow-typed": "npm run clean && flow-typed install --overwrite || true",
"lint": "eslint src",
"prepublish": "npm run clean && npm run test && npm run flow && npm run lint && npm run build"
},
"peerDependencies": {},
"resolutions": {
"babel-loader": "8.1.0"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "7.16.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"coveralls": "3.0.0",
"cross-env": "5.1.4",
"enzyme": "3.3.0",
"eslint": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"flow-bin": "0.70.0",
"flow-typed": "^3.4.0",
"fs-file-tree": "1.0.6",
"jest": "^27.3.1",
"rimraf": "2.6.2",
"rollup": "^2.60.1"
},
"jest": {
"verbose": true,
"testEnvironment": "jsdom",
"testURL": "http://localhost/"
}
}