-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"author": "GenUI LLC",
"bin": {
"gg": "./git-genui",
"git-genui": "./git-genui"
},
"bugs": "https:/github.com/generalui/git-genui/issues",
"dependencies": {
"@art-suite/cli": "^1.3.7",
"ansi-wordwrap": "^1.0.2",
"art-rest-client": "^1.7.0",
"art-standard-lib": "^1.69.8",
"btoa": "^1.2.1",
"caffeine-eight": "^3.0.2",
"caffeine-script-runtime": "^1.13.4",
"chalk": "^4.1.0",
"external-editor": "^3.1.0",
"fs-extra": "^11.2.0",
"glob": "^8.0.3",
"glob-promise": "^6.0.5",
"inquirer": "^8.2.4",
"inquirer-autocomplete-prompt": "^2.0.0",
"inquirer-checkbox-plus-prompt": "^1.0.1",
"neptune-namespaces-runtime": "^3.0.0",
"open": "^10.0.4",
"pivotaljs": "^1.0.3",
"simple-git": "^3.7.1",
"slice-ansi": "^4.0.0",
"stable": "^0.1.8"
},
"description": "git-genui streamlines: PivotalTracker updates, git-commits, pairing-git-commits, semantic-versioning",
"devDependencies": {
"@art-suite/standard-package-builder": "^1.1.3",
"art-build-configurator": "^1.26.9",
"art-testbench": "^3.2.7",
"caffeine-script": "^0.74.1",
"jest": "^29.2.0",
"nodemon": "^3.1.0",
"mock-fs": "^5.1.2",
"neptune-namespaces": "^4.0.0"
},
"homepage": "https://github.com/generalui/git-genui",
"jest": {
"collectCoverageFrom": [
"build/**/*.js",
"!build/test/**/*.js"
],
"coveragePathIgnorePatterns": [
"/index.js$",
"/namespace.js$"
],
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/test"
],
"verbose": true
},
"license": "ISC",
"name": "git-genui",
"repository": {
"type": "git",
"url": "https://github.com/generalui/git-genui.git"
},
"scripts": {
"build": "rsync -av --include='*.js' --include='*.css' --exclude='*' ./source/ ./build/\ncaf -m -c source -o build\nnpm run nn",
"build-clean": "# BUILD CLEAN START\n# - building into: build-temp\n#\nrm -rf ./__build-old__\nrsync -av --include='*.js' --include='*.css' --exclude='*' ./source/ ./build/\ncaf -m -c source -o build-temp\nnpm run nn\n\nnn build-temp/*\n\n# BUILD CLEAN FINIALIZING\n# - replace old build in: build\n# - with new build from: build-temp\n#\nmv build __build-old__\nmv build-temp build\nrm -rf ./__build-old__",
"build-watch": "nodemon -e js,ts,jsx,tsx,caf,coffee,json -x npm run build",
"clean": "rm -rf build/*",
"nn": "nn build/* ",
"test": "npm run build\njest",
"test-watch": "jest --watch"
},
"version": "0.20.10",
"watch": {
"build": {
"extensions": [
"caf"
],
"patterns": [
"source"
],
"quiet": false
}
}
}