-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 KB
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
{
"name": "remove-trailing-path-separator",
"description": "Remove trailing path separator from string.",
"version": "1.0.3",
"author": {
"name": "sanemat",
"email": "o.gata.ken@gmail.com",
"url": "sane.jp"
},
"devDependencies": {
"conventional-changelog-cli": "^2.1.1",
"eclint": "^2.8.1",
"eslint": "^4.0.0",
"espower-loader": "^1.0.0",
"fixpack": "^4.0.0",
"globstar": "^1.0.0",
"mocha": "^8.3.2",
"npm-check-updates": "^11.4.1",
"power-assert": "^1.1.0",
"touch": "^1.0.0"
},
"files": [
"index.js"
],
"keywords": [
"backslash",
"path",
"sep",
"separator",
"slash",
"string",
"trailing",
"trim",
"win",
"windows"
],
"license": "MIT",
"repository": "pandawing/node-remove-trailing-path-separator",
"scripts": {
"changelog": "touch changelog.md && conventional-changelog -i changelog.md -s --preset angular",
"eclint": "globstar --ignore \"node_modules/**\" -- eclint check \"*.{js,yml,md,json}\"",
"eslint": "eslint .",
"fixpack": "fixpack",
"git:tag": "git tag v${npm_package_version}",
"lint": "npm run eclint && npm run eslint",
"ncu": "ncu -u",
"test": "mocha --require ./enable-power-assert.js -- ./test.js",
"verify": "npm run lint && npm run test"
}
}