source: trip-planner-front/node_modules/fs-monkey/package.json@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.5 KB
Line 
1{
2 "name": "fs-monkey",
3 "version": "1.0.3",
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.13.14",
36 "@babel/core": "^7.13.14",
37 "@babel/preset-env": "^7.13.12",
38 "@semantic-release/changelog": "5.0.1",
39 "@semantic-release/git": "9.0.0",
40 "@semantic-release/npm": "7.1.0",
41 "@types/jest": "26.0.22",
42 "@types/node": "8.10.66",
43 "babel-jest": "26.6.3",
44 "jest": "26.6.3",
45 "semantic-release": "17.4.2",
46 "source-map-support": "0.5.19"
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.