-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "gendiff-blazecolour-2",
"version": "2.1.0",
"description": "gendiff cli",
"main": "dist/index.js",
"bin": {
"gendiff": "dist/bin/gendiff.js"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"watch": "jest --watch",
"babel-node": "babel-node",
"eslint": "eslint",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blazecolour/gendiff-cli.git"
},
"author": "Serg Shitikov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blazecolour/gendiff-cli/issues"
},
"homepage": "https://github.com/blazecolour/gendiff-cli#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^3.0.2",
"eslint": "^4.19.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.4.1",
"jest-cli": "^23.4.1"
},
"dependencies": {
"commander": "^2.16.0",
"js-yaml": "^3.12.0",
"lodash": "^4.17.10",
"ini": "^1.3.5"
}
}