-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.58 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
{
"name": "labelcopier-core",
"version": "0.0.0",
"description": "Business logic of Labelcopier",
"main": "index.js",
"repository": "https://github.com/BadwaterBay/labelcopier-core.git",
"author": "Badwater Bay <badwaterbay@gmail.com>",
"license": "BSD-3-Clause",
"scripts": {
"format": "prettier --config '.prettierrc.yml' --write '**/*.{js,json,md,yaml,yml}'",
"lint": "eslint --config '.eslintrc.yml' --no-eslintrc '**/*.js' --cache --fix",
"test": "mocha --config '.mocharc.yml'",
"coverage": "nyc yarn test",
"show-coverage-report": "serve coverage/lcov-report",
"scr": "yarn show-coverage-report",
"refresh": "rimraf node_modules && yarn --frozen-lockfile"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/register": "^7.13.8",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"mocha": "^8.3.2",
"nock": "^13.0.11",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"serve": "^11.3.2",
"sinon": "^9.2.4"
}
}