UNPKG

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