-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 885 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
{
"name": "replace-occurences",
"version": "0.1.0",
"description": "Replace multiple occurrences in a string.",
"keywords": [
"string",
"replace",
"occurrences"
],
"main": "index.js",
"scripts": {
"test": "mocha test",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ETLaurent/replace-occurences.git"
},
"author": "ETLaurent",
"license": "MIT",
"bugs": {
"url": "https://github.com/ETLaurent/replace-occurences/issues"
},
"homepage": "https://github.com/ETLaurent/replace-occurences#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0"
}
}