forked from stipsan/example-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "@scrabblescore/scrabblescore",
"version": "1.0.9",
"description": "Find the Scrabble score for a given word",
"author": "Steve Winton <stevewinton@gmail.com> (https://github.com/swinton)",
"main": "index.js",
"license": "ISC",
"keywords": [],
"scripts": {
"start": "node ./index.js",
"test": "jest && eslint index.js 'test/**.js'",
"lint": "eslint index.js 'test/**.js' --fix"
},
"dependencies": {},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.5.0",
"prettier": "^1.14.2"
},
"engines": {
"node": ">= 8.3.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"index.js",
"lib/*.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}