-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.58 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
{
"name": "opinionate",
"version": "0.4.8",
"description": "Automated full stack application code generator",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tjme/opinionate.git"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --pretty",
"test-gen-overlay": "node bin/opinionate-meta --default-meta models/defaultMeta.json --overlay-out models/overlayOut.json",
"test": "mocha --compilers ts:ts-node/register --recursive test/**/*-spec.ts",
"watch": "tsc --watch"
},
"keywords": [
"code-generator",
"introsepction",
"graphql",
"typescript",
"postgresql",
"postgraphile",
"vue",
"vuejs",
"vite",
"primevue",
"vee-validate",
"angular",
"angular-material"
],
"author": "Tim Merrison <[email protected]>",
"bugs": {
"url": "https://github.com/tjme/opinionate/issues"
},
"homepage": "https://github.com/tjme/opinionate#readme",
"main": "dist/bin/opinionate.js",
"typings": "dist/bin/opinionate.d.ts",
"bin": {
"opinionate": "bin/opinionate",
"opinionate-gen": "bin/opinionate-gen",
"opinionate-meta": "bin/opinionate-meta"
},
"files": [
"bin",
"dist",
"models",
"templates"
],
"dependencies": {
"@types/pluralize": "^0.0.29",
"commander": "^5.1.0",
"global": "^4.4.0",
"graphql": "^15.0.0",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
"@types/sinon": "^9.0.0",
"chai": "^4.2.0",
"mocha": "^7.1.2",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.9.2"
}
}