-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.21 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
{
"name": "multihello",
"version": "1.0.4",
"description": "use initially 100 languages to say hello",
"main": ". index.js",
"scripts": {
"demo": "node examples.js",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"test": "jest --watchAll",
"test:coveralls": "jest --coverage && coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riskieee/multihello.git"
},
"keywords": [
"hello",
"json",
"languages",
"translate"
],
"author": "riskieee",
"license": "MIT",
"bugs": {
"url": "https://github.com/riskieee/multihello/issues"
},
"homepage": "https://github.com/riskieee/multihello#readme",
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.0.6",
"prettier": "^2.3.2"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"es6": true,
"node": true
},
"rules": {
"eqeqeq": "off"
}
}
}