-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
92 lines (92 loc) · 2.5 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
85
86
87
88
89
90
91
92
{
"name": "updtr",
"version": "2.0.0",
"description": "Update outdated npm modules with zero pain™",
"main": "dist",
"scripts": {
"pretest": "npm run fixtures:ensure",
"test": "cross-env FORCE_COLOR=1 jest --coverage",
"test:watch": "jest --watch",
"posttest": "npm run lint",
"lint": "eslint --ignore-path ./.gitignore bin src test",
"build": "cross-env BABEL_ENV=production rollup -c",
"prepublishOnly": "npm run build && node ./bin/updtr --help",
"release": "standard-version",
"fixtures:ensure": "cross-env NODE_ENV=development babel-node ./test/helpers/setupFixtures.js",
"fixtures:rebuild": "cross-env NODE_ENV=development babel-node ./test/helpers/cleanupFixtures.js && npm run fixtures:ensure"
},
"author": "developers@peerigon.com",
"license": "Unlicense",
"bin": {
"updtr": "./bin/updtr"
},
"dependencies": {
"ansi-escapes": "^2.0.0",
"babel-runtime": "^6.23.0",
"chalk": "^1.1.3",
"cli-cursor": "^2.1.0",
"cli-spinners": "^1.0.0",
"detect-indent": "^5.0.0",
"es6-error": "^4.0.2",
"pify": "^3.0.0",
"semver": "^5.3.0",
"string-width": "^2.0.0",
"unicons": "0.0.3",
"yargs": "^8.0.2"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^20.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-latest": "^6.24.1",
"clone": "^2.1.1",
"cross-env": "^5.0.1",
"eslint": "^3.19.0",
"eslint-config-peerigon": "^10.1.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jsdoc": "^3.1.0",
"jest": "^20.0.4",
"rimraf": "^2.6.1",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^3.0.0",
"sinon": "^2.3.5",
"standard-version": "^4.2.0",
"stream-buffers": "^3.0.1",
"temp": "^0.8.3",
"wrap-ansi": "^2.1.0"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 2.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/peerigon/updtr.git"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE"
],
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 94,
"functions": 94,
"lines": 94,
"statements": 94
}
}
}
}