|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
1.5 KB
|
| Line | |
|---|
| 1 | {
|
|---|
| 2 | "name": "fs-monkey",
|
|---|
| 3 | "version": "1.1.0",
|
|---|
| 4 | "description": "Monkey patches for file system related things.",
|
|---|
| 5 | "main": "lib/index.js",
|
|---|
| 6 | "license": "Unlicense",
|
|---|
| 7 | "keywords": [
|
|---|
| 8 | "fs",
|
|---|
| 9 | "file",
|
|---|
| 10 | "file system",
|
|---|
| 11 | "monkey",
|
|---|
| 12 | "fsmonkey",
|
|---|
| 13 | "monkeyfs",
|
|---|
| 14 | "monkeypatch",
|
|---|
| 15 | "patch"
|
|---|
| 16 | ],
|
|---|
| 17 | "files": [
|
|---|
| 18 | "lib",
|
|---|
| 19 | "!lib/__tests__",
|
|---|
| 20 | "docs"
|
|---|
| 21 | ],
|
|---|
| 22 | "directories": {
|
|---|
| 23 | "doc": "docs"
|
|---|
| 24 | },
|
|---|
| 25 | "repository": {
|
|---|
| 26 | "type": "git",
|
|---|
| 27 | "url": "https://github.com/streamich/fs-monkey.git"
|
|---|
| 28 | },
|
|---|
| 29 | "scripts": {
|
|---|
| 30 | "build": "babel src --out-dir lib",
|
|---|
| 31 | "test": "jest"
|
|---|
| 32 | },
|
|---|
| 33 | "dependencies": {},
|
|---|
| 34 | "devDependencies": {
|
|---|
| 35 | "@babel/cli": "^7.18.6",
|
|---|
| 36 | "@babel/core": "^7.18.6",
|
|---|
| 37 | "@babel/preset-env": "^7.18.6",
|
|---|
| 38 | "@semantic-release/changelog": "^6.0.1",
|
|---|
| 39 | "@semantic-release/git": "^10.0.1",
|
|---|
| 40 | "@semantic-release/npm": "^9.0.1",
|
|---|
| 41 | "@types/jest": "^29.0.0",
|
|---|
| 42 | "@types/node": "^8.10.66",
|
|---|
| 43 | "babel-jest": "^29.0.0",
|
|---|
| 44 | "jest": "^29.0.0",
|
|---|
| 45 | "semantic-release": "^19.0.3",
|
|---|
| 46 | "source-map-support": "^0.5.21"
|
|---|
| 47 | },
|
|---|
| 48 | "release": {
|
|---|
| 49 | "verifyConditions": [
|
|---|
| 50 | "@semantic-release/changelog",
|
|---|
| 51 | "@semantic-release/npm",
|
|---|
| 52 | "@semantic-release/git"
|
|---|
| 53 | ],
|
|---|
| 54 | "prepare": [
|
|---|
| 55 | "@semantic-release/changelog",
|
|---|
| 56 | "@semantic-release/npm",
|
|---|
| 57 | "@semantic-release/git"
|
|---|
| 58 | ]
|
|---|
| 59 | },
|
|---|
| 60 | "jest": {
|
|---|
| 61 | "collectCoverageFrom": [
|
|---|
| 62 | "src/**/*.js"
|
|---|
| 63 | ],
|
|---|
| 64 | "transform": {
|
|---|
| 65 | "^.+\\.jsx?$": "babel-jest"
|
|---|
| 66 | },
|
|---|
| 67 | "testRegex": ".*(__tests__/|/test/unit/).*(test|spec)\\.(t|j)sx?$"
|
|---|
| 68 | }
|
|---|
| 69 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.