-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
67 lines (67 loc) · 2.05 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
{
"name": "graphite-cli",
"version": "0.16.2",
"license": "None",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/screenplaydev/screenplay-cli",
"private": true,
"dependencies": {
"@screenplaydev/graphite-cli-routes": "0.13.0",
"@screenplaydev/retype": "^0.2.0",
"@screenplaydev/retyped-routes": "^0.1.0",
"chalk": "^4.1.0",
"fs-extra": "^9.0.1",
"nock": "^13.1.3",
"node-fetch": "^2.6.1",
"prompts": "^2.4.1",
"tmp": "^0.2.1",
"yargs": "^17.0.1"
},
"scripts": {
"build": "tsc",
"lint": "eslint src --quiet --ext .ts --cache",
"prepublishOnly": "yarn build",
"cli": "ts-node ./src/index.ts",
"test": "yarn mocha \"dist/test/**/*.test.js\" --parallel --jobs 8",
"test-fast": "yarn mocha \"dist/test/fast/**/*.test.js\" --parallel --jobs 8",
"test-slow": "yarn mocha \"dist/test/slow/**/*.test.js\"",
"test-one": "yarn mocha --parallel --jobs 8",
"test-grep": "yarn mocha \"dist/test/**/*.test.js\" -g",
"deploy": "ts-node ./scripts/deploy/deploy.ts",
"deploy-test": "ts-node ./scripts/deploy/deploy-test.ts",
"regen-demo": "ts-node ./scripts/demo/index.ts"
},
"files": [
"dist"
],
"bin": {
"gp": "dist/src/index.js",
"graphite": "dist/src/index.js",
"gt": "dist/src/index.js"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.4",
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^9.0.1",
"@types/mocha": "^8.2.3",
"@types/node": "^14.14.37",
"@types/node-fetch": "^2.5.11",
"@types/prompts": "^2.0.14",
"@types/tmp": "^0.2.0",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"@yarnpkg/pnpify": "^3.0.0-rc.10",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.20.0",
"husky": "^7.0.1",
"mocha": "^8.3.2",
"ts-node": "^9.0.0",
"typescript": "^4.2.4"
}
}