forked from fuse-box/fuse-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.32 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
120
121
122
123
124
125
{
"name": "fuse-box",
"version": "3.2.0-next.9",
"description": "Fuse-Box a bundler that does it right",
"typings": "index.d.ts",
"main": "index.js",
"bin": {
"fuse": "./cli/entry.js"
},
"scripts": {
"help": "node bin/fsbx --help",
"test": "cross-env FUSE_TEST_TIMEOUT=5000 node ./test.js",
"test:once": "cross-env gulp dist && TRAVIS=true ./node_modules/mocha/bin/mocha && node ./test.js",
"start": "gulp watch",
"devDeps": "gulp installDevDeps",
"dist": "gulp dist",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"lint": "tslint --project ./src"
},
"engines": {
"node": ">= 8",
"npm": ">= 3.10.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuse-box/fuse-box.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/fuse-box/fuse-box/issues"
},
"homepage": "https://github.com/fuse-box/fuse-box#readme",
"devDependencies": {
"@types/node": "^6.0.74",
"cheerio": "^0.22.0",
"commitizen": "^2.9.6",
"cross-env": "^5.1.3",
"cz-conventional-changelog": "^2.0.0",
"fuse-box-test-using-old-version": "^1.0.0",
"fuse-box-testcase1": "^1.0.0",
"fuse-box-testcase3": "^1.0.3",
"fuse-test-runner": "^1.0.14",
"gulp": "3.9.1",
"gulp-bump": "2.4.0",
"gulp-clean": "0.3.2",
"gulp-concat": "2.6.0",
"gulp-header": "^1.8.8",
"gulp-rename": "1.2.2",
"gulp-replace": "0.5.4",
"gulp-sourcemaps": "2.6.0",
"gulp-typescript": "3.1.5",
"gulp-uglify": "2.0.0",
"gulp-wrap": "0.13.0",
"homedir": "^0.6.0",
"husky": "^0.14.3",
"jsdom": "^9.12.0",
"mkdirp": "^0.5.1",
"mocha": "^3.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"reflect-metadata": "^0.1.8",
"run-sequence": "^1.2.2",
"should": "^11.1.0",
"sinon": "^1.17.6",
"typescript": "^2.8.0-dev.20180204",
"uglify-js": "^3.1.8",
"validate-commit-msg": "^2.14.0",
"wires-reactive": "^1.1.1"
},
"dependencies": {
"acorn": "^5.1.2",
"acorn-jsx": "^4.0.1",
"ansi": "^0.3.1",
"app-root-path": "^2.0.1",
"base64-img": "^1.0.3",
"base64-js": "^1.2.0",
"chokidar": "^1.6.1",
"clean-css": "^4.1.9",
"escodegen": "^1.8.1",
"express": "^4.14.0",
"fliplog": "^0.3.13",
"fs-extra": "^2.0.0",
"fuse-concat-with-sourcemaps": "^1.0.5",
"glob": "^7.1.1",
"ieee754": "^1.1.8",
"inquirer": "^3.0.6",
"lego-api": "^1.0.7",
"mustache": "^2.3.0",
"postcss": "^6.0.1",
"pretty-time": "^0.2.0",
"prettysize": "0.0.3",
"realm-utils": "^1.0.9",
"regexpu-core": "^4.1.3",
"request": "^2.79.0",
"shorthash": "0.0.2",
"source-map": "^0.7.1",
"tslib": "^1.8.0",
"watch": "^1.0.1",
"ws": "^1.1.1",
"yargs": "^9.0.1"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/fuse-box",
"logo": "https://opencollective.com/opencollective/logo.txt"
},
"config": {
"validate-commit-msg": {
"scope": {
"required": false,
"allowed": [
"*"
],
"validate": false,
"multiple": false
},
"helpMessage": "Valid commit message formats are: \n - <type>(<scope>): <subject> \n - <type>: <subject>"
},
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}