-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.48 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
57
58
59
60
61
62
{
"name": "gendiff-package",
"version": "1.0.3",
"description": "Compares two configuration files and outputs a difference.",
"main": "index.js",
"scripts": {
"babel-node": "babel-node",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build",
"eslint": "eslint",
"test": "jest",
"watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/samsonovkirill/project-lvl2-s281"
},
"keywords": [
"gendiff",
"configuration",
"difference",
"compare",
"json",
"ini",
"yaml",
"yml",
"diff"
],
"author": "Kirill Samsonov",
"license": "ISC",
"bugs": {
"url": "https://github.com/samsonovkirill/project-lvl2-s281/issues"
},
"homepage": "https://github.com/samsonovkirill/project-lvl2-s281#readme",
"dependencies": {
"commander": "^2.15.1",
"ini": "^1.3.5",
"js-yaml": "^3.12.0",
"lodash": "^4.17.10"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "*",
"babel-jest": "^23.2.0",
"babel-preset-env": "*",
"babel-preset-stage-0": "*",
"eslint": "^5.0.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.17.0",
"jest": "^23.2.0",
"regenerator-runtime": "^0.12.0"
},
"bin": {
"gendiff": "dist/bin/gendiff.js"
},
"files": [
"dist"
]
}