This repository was archived by the owner on Oct 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.83 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.83 KB
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
{
"name": "@supermodel/cli",
"version": "0.46.13",
"description": "Supermodel command tool",
"main": "build",
"scripts": {
"build:clean": "rm -rf ./build",
"build:env": "cp .env.* ./build",
"build": "npm run build:clean && tsc && npm run build:env",
"lint": "tslint --format stylish --project ./",
"prepublishOnly": "npm run build",
"pretest": "npm run ts && npm run lint",
"test": "npm run unit",
"test:watch": "jest --watch",
"ts": "tsc --noEmit",
"unit": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "./scripts/prettify-staged.sh",
"post-commit": "git update-index -g"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/supermodel/supermodel-cli.git"
},
"author": {
"name": "Zdenek Nemec",
"email": "z@goodapi.co",
"url": "http://goodapi.co"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/supermodel/supermodel-cli/issues"
},
"bin": {
"supermodel": "./bin/supermodel"
},
"homepage": "https://github.com/supermodel/supermodel-cli#readme",
"dependencies": {
"@supermodel/file": "^0.5.0",
"@supermodel/lib": "0.4.11",
"ajv": "^6.1.1",
"auth0-js": "9.4.2",
"casex": "0.0.5",
"commander": "^2.14.1",
"dotenv": "5.0.1",
"glob": "7.1.3",
"graphql": "0.13.2",
"inquirer": "5.2.0",
"isomorphic-fetch": "2.2.1",
"js-yaml": "^3.10.0",
"node-fetch": "2.1.2",
"rimraf": "2.6.2"
},
"devDependencies": {
"@types/jest": "23.3.13",
"@types/json-schema": "7.0.1",
"@types/node": "10.12.18",
"husky": "1.3.1",
"jest": "23.4.0",
"prettier": "1.15.3",
"ts-jest": "23.10.5",
"tslint": "5.12.1",
"tslint-config-prettier": "1.17.0",
"typescript": "3.2.4"
},
"directories": {
"build": "build",
"test": "test"
}
}