-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 906 Bytes
/
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
{
"name": "cleanstr",
"version": "0.0.1",
"description": "Remove unwanted characters from string.",
"main": "index.js",
"scripts": {
"test": "mocha test",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"chai": "^4.1.0",
"coveralls": "^2.13.1",
"eslint": "^4.1.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"mocha-lcov-reporter": "^1.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blackmatch/cleanstr.git"
},
"keywords": [
"string",
"special",
"character",
"zero-with",
"space"
],
"author": "blackmatch <coder.blackmatch@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blackmatch/cleanstr/issues"
},
"homepage": "https://github.com/blackmatch/cleanstr#readme"
}