-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.98 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
{
"name": "@hisorange/artgen",
"version": "0.0.1",
"description": "Work less, do More!",
"main": "./build/index.js",
"bin": {
"artgen": "./bin/artgen"
},
"scripts": {
"test": "jest --collectCoverage=0",
"test:cover": "jest",
"type": "tsc --noEmit",
"type:watch": "tsc --noEmit --watch",
"build": "rimraf build && tsc -p tsconfig.dev.json",
"build:watch": "rimraf build && tsc -p tsconfig.dev.json --watch",
"build:prod": "rimraf build && tsc -p tsconfig.prod.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hisorange/artgen.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"artgen",
"compiler",
"kernel",
"code",
"generation"
],
"author": "Varga Zsolt <hello@hisorange.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hisorange/artgen/issues"
},
"homepage": "https://artgen.io",
"dependencies": {
"@loopback/context": "^3.17.0",
"@sentry/node": "^5.14.2",
"chalk": "^4.1.0",
"crisphooks": "^2.0.1",
"deepmerge": "^4.2.2",
"ejs": "^3.1.6",
"inflection": "^1.12.0",
"inquirer": "^7.3.3",
"is-plain-object": "^5.0.0",
"memfs": "^3.2.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"signale": "^1.4.0",
"simple-git": "^2.20.1",
"strman.isuppercase": "^2.0.0",
"strman.removespaces": "^2.0.0",
"strman.tocamelcase": "^2.0.0",
"strman.tokebabcase": "^2.0.0",
"strman.tosnakecase": "^2.0.0",
"strman.tostudlycaps": "^2.0.0",
"tslib": "^2.3.0",
"uuid": "^8.3.2",
"walkdir": "^0.4.1",
"yargonaut": "^1.1.4",
"yargs": "^17.0.1"
},
"devDependencies": {
"@sentry/types": "^5.14.2",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
"@types/signale": "^1.4.1",
"@types/uuid": "^8.3.0",
"@types/yargs": "^17.0.0",
"coveralls": "^3.1.0",
"jest": "^27.0.6",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.0.0"
}
}