-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "publish-url-params",
"version": "1.2.1",
"description": "",
"main": "dist/bundle.js",
"scripts": {
"check-coverage": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"commit": "git-cz",
"prebuild": "rimraf dist",
"build": "npm run build:min && npm run build:unmin",
"build:min": "NODE_ENV=production rollup --config --file dist/bundle.min.js",
"build:unmin": "rollup --config",
"test": "istanbul cover -x *.spec.js _mocha -- -R spec src/index.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wwwx/url-params.git"
},
"keywords": [
"url",
"params",
"urlparams"
],
"author": "Xu Wang <[email protected]> (https://github.com/wwwx)",
"license": "MIT",
"bugs": {
"url": "https://github.com/wwwx/url-params/issues"
},
"homepage": "https://github.com/wwwx/url-params#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "18.0.0",
"chai": "^4.3.4",
"codecov.io": "0.1.6",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"ghooks": "^2.0.4",
"istanbul": "^0.4.5",
"mocha": "^8.3.2",
"rimraf": "3.0.2",
"rollup": "2.45.2",
"rollup-plugin-terser": "7.0.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test"
}
}
}