UNPKG

986 BJSONView Raw
1{
2 "name": "@fab/core",
3 "version": "0.0.5",
4 "private": false,
5 "description": "Common code for all FAB projects",
6 "homepage": "https://github.com/fab-spec/fab",
7 "repository": "fab-spec/fab",
8 "license": "MIT",
9 "author": "Glen Maddern",
10 "files": [
11 "lib",
12 "esm",
13 "src"
14 ],
15 "main": "lib/index.js",
16 "module": "esm/index.js",
17 "types": "esm/index.d.ts",
18 "scripts": {
19 "build": "yarn build:cjs && yarn build:esm",
20 "build:cjs": "tsc --module commonjs --outDir lib",
21 "build:esm": "tsc --module esnext --outDir esm",
22 "build:watch": "run-p 'build:{cjs,esm} -- --watch --preserveWatchOutput'",
23 "clean": "rm -rf esm lib",
24 "prepack": "npm run clean && npm run build",
25 "test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
26 },
27 "dependencies": {
28 "@types/node": "^12.12.14",
29 "mime-types": "^2.1.25"
30 },
31 "publishConfig": {
32 "access": "public"
33 },
34 "gitHead": "469d75a2e04837ca55089e5a4aa3e27d5945945b"
35}