forked from yarnpkg/yarn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.1 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "yarn",
"version": "0.15.1",
"license": "BSD-2-Clause",
"preferGlobal": true,
"dependencies": {
"babel-runtime": "^6.0.0",
"bytes": "^2.4.0",
"camelcase": "^3.0.0",
"chalk": "^1.1.1",
"cmd-shim": "^2.0.1",
"commander": "^2.9.0",
"death": "^1.0.0",
"debug": "^2.2.0",
"defaults": "^1.0.3",
"detect-indent": "^4.0.0",
"diff": "^2.2.1",
"eslint-plugin-react": "5.2.2",
"ini": "^1.3.4",
"invariant": "^2.2.0",
"is-builtin-module": "^1.0.0",
"leven": "^2.0.0",
"loud-rejection": "^1.2.0",
"minimatch": "^3.0.3",
"mkdirp": "^0.5.1",
"node-emoji": "^1.0.4",
"node-gyp": "^3.2.1",
"object-path": "^0.11.2",
"proper-lockfile": "^1.1.3",
"read": "^1.0.7",
"repeating": "^2.0.0",
"request": "^2.75.0",
"request-capture-har": "^1.1.4",
"rimraf": "^2.5.0",
"roadrunner": "^1.1.0",
"semver": "^5.1.0",
"strip-bom": "^2.0.0",
"tar": "^2.2.1",
"tar-stream": "^1.5.2",
"user-home": "^2.0.0",
"validate-npm-package-license": "^3.0.1"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^14.0.0",
"babel-loader": "^6.2.5",
"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": "^6.3.13",
"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.3.1",
"eslint-config-fb-strict": "^14.1.3",
"eslint-config-fbjs": "^1.0.0",
"eslint-config-kittens": "^2.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.15.0",
"eslint-plugin-no-async-without-await": "^1.0.0",
"eslint-plugin-yarn-internal": "file:scripts/eslint-rules",
"flow-bin": "0.33.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.0.0",
"gulp-newer": "^1.0.0",
"gulp-plumber": "^1.0.1",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5",
"jest": "^16.0.1",
"json-loader": "^0.5.4",
"mock-stdin": "^0.3.0",
"temp": "^0.8.3",
"webpack": "^2.1.0-beta.25"
},
"repository": "yarnpkg/yarn",
"bin": {
"yarn": "./bin/yarn.js",
"yarnpkg": "./bin/yarn.js"
},
"scripts": {
"test": "npm run lint && npm run test-only",
"test-ci": "npm run build && npm run test-only",
"check-lockfile": "./scripts/check-lockfile.sh",
"build": "gulp build",
"watch": "gulp watch",
"test-only": "jest --coverage --verbose",
"lint": "eslint . && flow check",
"release-branch": "./scripts/release-branch.sh",
"build-dist": "./scripts/build-dist.sh",
"build-chocolatey": "powershell ./scripts/build-chocolatey.ps1",
"build-win-installer": "scripts\\build-windows-installer.bat"
},
"jest": {
"timers": "fake",
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"__tests__/fixtures/"
],
"testPathIgnorePatterns": [
"__tests__/(fixtures|__mocks__)/",
"updates/",
"/_(temp|mock|install|init).js$"
]
}
}