UNPKG

2.02 kBJSONView Raw
1{
2 "name": "@shadowspawn/forest-arborist",
3 "version": "8.1.2",
4 "description": "Forest Arborist. A loosely coupled repository manager inspired by Mercurial subrepositories, npm, and Git.",
5 "keywords": [
6 "git",
7 "hg",
8 "mercurial"
9 ],
10 "bin": {
11 "fab": "./dist/src/cli.js"
12 },
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/shadowspawn/forest-arborist.git"
16 },
17 "scripts": {
18 "create-playground": "node dist/dev/create-playground",
19 "lint": "eslint ./src/**/*.ts ./dev/**/*.ts ./tests/**/*.ts",
20 "prepare": "tsc",
21 "pull": "git pull && npm install && npm test",
22 "release": "node dist/dev/release",
23 "smoketest": "node dist/dev/smoketest",
24 "test": "jest --silent"
25 },
26 "author": "John Gee",
27 "license": "MIT",
28 "files": [
29 "dist/src/*.js",
30 "npm-shrinkwrap.json",
31 "resources/*"
32 ],
33 "jest": {
34 "globals": {
35 "JEST_RUNNING": true
36 },
37 "testEnvironment": "node",
38 "transform": {
39 "^.+\\.tsx?$": "ts-jest"
40 },
41 "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
42 "testPathIgnorePatterns": [
43 "/dist/",
44 "/node_modules/"
45 ],
46 "moduleFileExtensions": [
47 "ts",
48 "tsx",
49 "js",
50 "jsx",
51 "json"
52 ]
53 },
54 "dependencies": {
55 "chalk": "^4.1.2",
56 "commander": "^8.2.0",
57 "fs-extra": "^10.0.0",
58 "shell-quote": "^1.7.2",
59 "tmp": "^0.2.1"
60 },
61 "devDependencies": {
62 "@types/fs-extra": "^9.0.13",
63 "@types/jest": "^27.0.2",
64 "@types/node": "^14.17.27",
65 "@types/shell-quote": "^1.7.1",
66 "@types/tmp": "^0.2.1",
67 "@typescript-eslint/eslint-plugin": "^5.0.0",
68 "@typescript-eslint/parser": "^5.0.0",
69 "eslint": "^8.0.1",
70 "jest": "^27.3.0",
71 "ts-jest": "^27.0.7",
72 "typescript": "^4.4.4"
73 },
74 "bugs": {
75 "url": "https://github.com/shadowspawn/forest-arborist/issues"
76 },
77 "optionalDependencies": {},
78 "directories": {
79 "doc": "./docs",
80 "test": "./tests"
81 },
82 "engines": {
83 "node": ">= 12"
84 }
85}