forked from ipfs/aegir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.84 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
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "aegir",
"version": "13.0.7",
"description": "JavaScript project management",
"main": "cli.js",
"browser": {
"fs": false
},
"bin": {
"aegir": "cli.js"
},
"scripts": {
"lint": "node cli.js lint",
"test:node": "cross-env AEGIR_TEST=hello node cli.js test -t node",
"test:browser": "cross-env AEGIR_TEST=hello node cli.js test -t browser webworker --files test/browser.spec.js",
"test": "npm run test:node && npm run test:browser",
"coverage": "cross-env AEGIR_TEST=hello node cli.js coverage -t node",
"watch": "cross-env AEGIR_TEST=hello node cli.js test -t node --watch",
"release": "npm run test && node cli.js release --no-build --no-test",
"release-minor": "npm run test && node cli.js release --no-build --no-test --type minor",
"release-major": "npm run test && node cli.js release --no-build --no-test --type major"
},
"keywords": [
"webpack",
"standard",
"lint",
"build"
],
"author": "Friedel Ziegelmayer <[email protected]>",
"license": "MIT",
"dependencies": {
"async": "^2.6.0",
"browserify-zlib": "^0.2.0",
"chalk": "^2.3.0",
"clean-documentation-theme": "^0.5.2",
"codecov": "^3.0.0",
"conventional-changelog": "^1.1.7",
"conventional-github-releaser": "^2.0.0",
"coveralls": "^3.0.0",
"detect-node": "^2.0.3",
"documentation": "^5.3.3",
"es6-promisify": "^5.0.0",
"eslint": "^4.13.0",
"eslint-config-aegir": "^1.0.1",
"execa": "^0.8.0",
"filesize": "^3.5.11",
"findup-sync": "^2.0.0",
"fs-extra": "^4.0.3",
"gh-pages": "^1.1.0",
"glob": "^7.1.2",
"joi": "^13.0.2",
"json-loader": "^0.5.7",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-own-reporter": "git+https://github.com/dryajov/karma-mocha-own-reporter#d562a92a12d5c76469a05d67cee19bcb8db22b23",
"karma-mocha-webworker": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.6",
"listr": "^0.13.0",
"listr-update-renderer": "^0.4.0",
"listr-verbose-renderer": "^0.4.1",
"lodash": "^4.17.4",
"mocha": "^4.0.1",
"mocha-jenkins-reporter": "^0.3.10",
"npm-which": "^3.0.1",
"nyc": "^11.3.0",
"p-map": "^1.2.0",
"pify": "^3.0.0",
"pre-push": "^0.1.1",
"pretty-hrtime": "^1.0.3",
"rimraf": "^2.6.2",
"safe-buffer": "^5.1.1",
"semver": "^5.4.1",
"simple-git": "^1.85.0",
"stream-http": "^2.7.2",
"through": "^2.3.8",
"transform-loader": "^0.2.4",
"uglify-es": "^3.2.2",
"update-notifier": "^2.3.0",
"webpack": "^3.10.0",
"webpack-merge": "^4.1.1",
"yargs": "^10.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/ipfs/aegir"
},
"engines": {
"node": ">=4.0.0"
},
"contributors": [
"David Dias <[email protected]>",
"Dmitriy Ryajov <[email protected]>",
"Garren Smith <[email protected]>",
"Haad <[email protected]>",
"Henrique Dias <[email protected]>",
"JGAntunes <[email protected]>",
"Jakub Sztandera <[email protected]>",
"Lars Gierth <[email protected]>",
"Stephen Whitmore <[email protected]>",
"Volker Mische <[email protected]>",
"dignifiedquire <[email protected]>",
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>",
"greenkeeperio-bot <[email protected]>",
"kumavis <[email protected]>",
"mkg20001 <[email protected]>",
"npmcdn-to-unpkg-bot <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>"
],
"devDependencies": {
"chai": "^4.1.2",
"cross-env": "^5.1.1",
"mock-require": "^2.0.2",
"sinon": "^4.1.3"
}
}