-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.09 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "aimml-gendiff",
"version": "0.1.4",
"description": "Compares two configuration files and shows a difference",
"main": "index.js",
"scripts": {
"babel-node": "babel-node",
"test": "jest",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build",
"eslint": "eslint",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aimmlegate/project-lvl2-s233"
},
"author": "Andrey Lukin",
"license": "ISC",
"bugs": {
"url": "https://github.com/aimmlegate/project-lvl2-s233/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/aimmlegate/project-lvl2-s233#readme",
"bin": {
"gendiff": "dist/bin/gendiff.js"
},
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "*",
"babel-eslint": "*",
"babel-preset-env": "*",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "*",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "*",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "*",
"flow-bin": "^0.66.0",
"jest": "^22",
"jest-cli": "^22.4.2"
},
"eslintConfig": {
"env": {
"es6": true
},
"plugins": [
"fp"
],
"rules": {
"fp/no-arguments": "error",
"fp/no-class": "error",
"fp/no-delete": "error",
"fp/no-events": "error",
"fp/no-get-set": "error",
"fp/no-let": "error",
"fp/no-loops": "error",
"fp/no-mutating-assign": "error",
"fp/no-mutating-methods": "error",
"fp/no-mutation": "error",
"fp/no-nil": "error",
"fp/no-proxy": "error",
"fp/no-rest-parameters": "error",
"fp/no-this": "error",
"fp/no-throw": "error",
"fp/no-unused-expression": "error",
"fp/no-valueof-field": "error",
"no-var": "error"
}
},
"dependencies": {
"commander": "^2.15.1",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-jest": "^21.15.0",
"ini": "^1.3.5",
"js-yaml": "^3.11.0",
"lodash": "^4.17.5"
}
}