-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 KB
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
{
"name": "files-comparator",
"version": "0.6.2",
"description": "Compares two configuration files and shows a difference",
"main": "dist/index.js",
"bin": {
"gendiff": "dist/bin/gendiff.js"
},
"scripts": {
"test": "jest",
"babel-node": "babel-node",
"eslint": "eslint",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublish": "npm run build",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viprogramm/project-lvl2-s70.git"
},
"author": "Vitaliy Ti",
"license": "ISC",
"bugs": {
"url": "https://github.com/viprogramm/project-lvl2-s70/issues"
},
"homepage": "https://github.com/viprogramm/project-lvl2-s70#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "*",
"babel-eslint": "*",
"babel-preset-env": "*",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "*",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-plugin-import": "*",
"flow-bin": "^0.42.0",
"jest": "^19.0.2"
},
"dependencies": {
"commander": "^2.9.0",
"ini": "^1.3.4",
"install": "^0.8.7",
"js-yaml": "^3.8.2",
"lodash": "^4.17.4",
"npm": "^4.4.1"
}
}