This repository has been archived by the owner on Feb 26, 2020. It is now read-only.
forked from 0x80/yurnalist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.42 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
{
"name": "yurnalist",
"version": "0.2.1",
"description": "Elegant console output, borrowed from Yarn",
"main": "dist/index.js",
"repository": "https://github.com/0x80/yurnalist",
"author": "Thijs Koerselman",
"license": "BSD-2-Clause",
"preferGlobal": true,
"installationMethod": "unknown",
"dependencies": {
"chalk": "^1.1.1",
"death": "^1.0.0",
"debug": "^2.2.0",
"detect-indent": "^5.0.0",
"inquirer": "^3.0.1",
"invariant": "^2.2.0",
"is-builtin-module": "^1.0.0",
"is-ci": "^1.0.10",
"leven": "^2.0.0",
"loud-rejection": "^1.2.0",
"node-emoji": "^1.0.4",
"object-path": "^0.11.2",
"read": "^1.0.7",
"rimraf": "^2.5.0",
"semver": "^5.1.0",
"strip-bom": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.17.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^19.0.0",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-transform-es2015-typeof-symbol": "^6.8.0",
"babel-plugin-transform-inline-imports-commonjs": "^1.0.0",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015-node4": "^2.1.0",
"babel-preset-node5": "^10.2.0",
"babel-preset-stage-0": "^6.0.0",
"babylon": "^6.5.0",
"eslint": "3.19.0",
"eslint-config-fb-strict": "20.0.1",
"eslint-plugin-babel": "3.3.0",
"eslint-plugin-flowtype": "2.32.1",
"eslint-plugin-react": "6.7.1",
"eslint-plugin-yarn-internal": "file:scripts/eslint-rules",
"flow-bin": "0.48",
"jest": "^20.0.4",
"mock-stdin": "^0.3.0",
"prettier": "1.3.1",
"temp": "^0.8.3"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "yarn lint && yarn test-only",
"test-only": "node --max_old_space_size=4096 ./node_modules/.bin/jest --coverage --verbose",
"lint": "yarn run lint-prettier && eslint . && flow check",
"lint-prettier": "node scripts/prettier.js lint",
"prettier": "node scripts/prettier.js write",
"build": "babel src --out-dir dist",
"watch": "babel src --out-dir dist --watch",
"clean": "rimraf dist",
"prepublish": "npm run clean && npm run build"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"__tests__/fixtures/"
],
"testPathIgnorePatterns": [
"__tests__/(fixtures|__mocks__)/",
"updates/",
"/_(temp|mock|install|init|helpers).js$"
]
}
}