slimfits
Version:
Package for loading data stored in FITS data format
89 lines (88 loc) • 2.65 kB
JSON
{
"name": "slimfits",
"version": "0.2.9",
"description": "Package for loading data stored in FITS data format",
"main": "lib/index.js",
"module": "es/index.js",
"browser": "dist/bundle.js",
"types": "dist/bundle.d.ts",
"scripts": {
"build": "npm run build:lib & npm run build:umd",
"build:lib": "tsc --outDir lib --module commonjs",
"build:es": "tsc --outDir es --module es2015",
"build:umd": "npm run build:es && rollup --config && dts-bundle --name dist/bundle --main es --outputAsModuleFolder",
"clean": "rimraf dist es lib coverage",
"typecheck": "tsc --noEmit",
"lint": "tslint --project tsconfig.json --type-check --format stylish",
"test": "jest --env=jsdom --coverage",
"test:watch": "jest --env=jsdom --watch --updateSnapshot",
"prepare": "npm run build",
"prebuild": "npm run clean",
"postbuild": "rimraf {lib,es}/**/__tests__",
"posttest": "npm run typecheck && npm run lint",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git@github.com:sybilla/slimfits.git"
},
"keywords": [
"fits",
"loading",
"data"
],
"author": "Sybilla Technologies",
"contributors": [
{
"name": "Michał Drzał",
"email": "michal.drzal@sybillatechnologies.com"
},
{
"name": "Rafał Pawłaszek",
"email": "pawlaszek@sybillatechnologies.com"
}
],
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/sybilla/slimfits/issues"
},
"homepage": "https://github.com/sybilla/slimfits#readme",
"files": [
"lib",
"es",
"dist"
],
"dependencies": {},
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/mz": "0.0.32",
"@types/node": "^10.12.10",
"@types/pako": "^1.0.0",
"dts-bundle": "^0.7.2",
"jest": "^23.6.0",
"jest-environment-node-debug": "^2.0.0",
"mz": "^2.6.0",
"pako": "^1.0.6",
"pascal-case": "^2.0.1",
"rimraf": "^2.6.1",
"rollup": "^0.67.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-builtins": "^2.1.0",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.4.1",
"rollup-plugin-terser": "^3.0.0",
"rollup-plugin-uglify": "^6.0.0",
"semver": "^5.3.0",
"slimfits": "^0.2.6",
"ts-jest": "^23.10.5",
"tslib": "^1.9.3",
"tslint": "^5.0.0",
"typescript": "^3.1.6",
"xhr2": "^0.1.4"
},
"jest": {
"testEnvironment": "node"
}
}