-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
56
{
"name": "backend-project-lvl2",
"version": "0.0.1",
"description": "Compares two configuration files and shows a difference.",
"main": "dist/index.js",
"bin": {
"gendiff": "dist/bin/gendiff.js"
},
"scripts": {
"test": "jest",
"build": "NODE_ENV=production babel src --out-dir dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AntonLettuce/backend-project-lvl2.git"
},
"files": [
"dist"
],
"keywords": [
"hexlet",
"diffrence",
"configuration",
"files"
],
"author": "Anton Kapustin",
"license": "ISC",
"bugs": {
"url": "https://github.com/AntonLettuce/backend-project-lvl2/issues"
},
"jest": {
"testEnvironment": "node"
},
"homepage": "https://github.com/AntonLettuce/backend-project-lvl2#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.0",
"jest": "^25.1.0"
},
"dependencies": {
"commander": "^4.1.1",
"ini": "^1.3.5",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15"
}
}