UNPKG

1.39 kBJSONView Raw
1{
2 "name": "@fab/compile",
3 "description": "Compiles a FAB intermediate directory into a single .FAB file",
4 "version": "0.1.3",
5 "author": "Glen Maddern @geelen",
6 "bin": {
7 "fab-compile": "./bin/run"
8 },
9 "bugs": "https://github.com/fab-spec/fab/issues",
10 "dependencies": {
11 "@oclif/command": "^1",
12 "@oclif/config": "^1",
13 "@oclif/plugin-help": "^2",
14 "@types/globby": "^8.0.0",
15 "@types/hasha": "^3.0.0",
16 "chalk": "^2.4.1",
17 "deterministic-zip": "^1.0.5",
18 "globby": "^9.0.0",
19 "hasha": "^3.0.0",
20 "path-browserify": "^1.0.0",
21 "tslib": "^1",
22 "webpack": "^4.29.0"
23 },
24 "devDependencies": {
25 "@oclif/test": "^1",
26 "@types/chai": "^4",
27 "@types/mocha": "^5",
28 "@types/node": "^10",
29 "chai": "^4",
30 "mocha": "^5",
31 "nyc": "^13",
32 "ts-node": "^7",
33 "typescript": "^3.0"
34 },
35 "engines": {
36 "node": ">=8.0.0"
37 },
38 "files": [
39 "/bin",
40 "/lib"
41 ],
42 "homepage": "https://github.com/fab-spec/fab",
43 "keywords": [
44 "oclif"
45 ],
46 "license": "MIT",
47 "main": "lib/index.js",
48 "oclif": {
49 "bin": "fab-compile"
50 },
51 "repository": "fab-spec/fab",
52 "scripts": {
53 "prepack": "rm -rf lib && tsc -b && cp -R src/files lib/files",
54 "test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
55 },
56 "types": "lib/index.d.ts",
57 "resolutions": {
58 "path-browserify": "1.0.0"
59 }
60}