-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.27 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.27 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
49
50
51
52
53
54
55
56
{
"name": "gendiff-garrysh",
"version": "0.7.0",
"description": "Second Hexlet`s project",
"main": "dist/index.js",
"bin": {
"index": "dist/bin/gendiff.js"
},
"engines": {
"node": "8"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"babel-node": "babel-node",
"prepublishOnly": "npm run build",
"eslint": "eslint"
},
"devDependencies": {
"babel-cli": "*",
"babel-core": "*",
"babel-eslint": "*",
"babel-jest": "*",
"babel-preset-env": "*",
"babel-preset-stage-0": "*",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jest": "*",
"istanbul": "^0.4.5",
"jest": "^22.0.4",
"jest-cli": "*"
},
"dependencies": {
"commander": "^2.12.2",
"lodash": "^4.17.4",
"js-yaml": "^3.10.0",
"ini": "^1.3.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GarrySh/project-clear.git"
},
"jest": {
"testEnvironment": "node"
},
"author": "Garry Sh",
"license": "ISC",
"bugs": {
"url": "https://github.com/GarrySh/project-clear/issues"
},
"homepage": "https://github.com/GarrySh/project-clear#readme"
}