UNPKG

1.07 kBJSONView Raw
1{
2 "name": "@fab/core",
3 "version": "1.0.0-rc.3",
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 ],
18 "main": "lib/index.js",
19 "module": "esm/index.js",
20 "types": "esm/index.d.ts",
21 "scripts": {
22 "build": "yarn build:cjs && yarn build:esm",
23 "build:cjs": "tsc --module commonjs --outDir lib",
24 "build:esm": "tsc --module esnext --outDir esm",
25 "build:watch": "run-p 'build:{cjs,esm} -- --watch --preserveWatchOutput'",
26 "clean": "rm -rf esm lib package-lock.json",
27 "prepack": "npm run clean && npm run build",
28 "test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
29 },
30 "dependencies": {
31 "@types/node": "^12.12.14",
32 "mime-types": "^2.1.25",
33 "path-to-regexp": "^6.1.0"
34 },
35 "publishConfig": {
36 "access": "public"
37 },
38 "gitHead": "35d100b225744126eaca36a408ba9c868b99a4e1"
39}