-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.39 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
{
"name": "@modus/gimbal-core",
"version": "1.2.6",
"description": "Core utilities for Modus Gimbal",
"author": "Mitchell Simoens <mitchellsimoens@gmail.com>",
"homepage": "https://github.com/ModusCreateOrg/gimbal#readme",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ModusCreateOrg/gimbal.git"
},
"scripts": {
"build": "ttsc -p .",
"build:check": "ttsc --noEmit -p .",
"build:watch": "ttsc --watch -p .",
"lint": "eslint 'src/**/*.ts'",
"prepublish": "yarn build",
"test": "jest --coverage",
"test:coveralls": "cat ./coverage/lcov.info | coveralls",
"test:nocov": "jest"
},
"bugs": {
"url": "https://github.com/ModusCreateOrg/gimbal/issues"
},
"dependencies": {
"cli-table3": "0.5.1",
"colors": "1.4.0",
"commander": "3.0.1",
"deepmerge": "4.0.0",
"get-folder-size": "2.0.1",
"get-port": "5.0.0",
"globby": "10.0.1",
"is-ci": "2.0.0",
"minimatch": "3.0.4",
"mkdirp": "0.5.1",
"pidusage": "2.0.17",
"spinnies": "0.5.0",
"strip-ansi": "5.2.0"
},
"devDependencies": {
"@types/get-folder-size": "2.0.0",
"@types/globby": "9.1.0",
"@types/is-ci": "2.0.0",
"@types/minimatch": "3.0.3",
"@types/mkdirp": "0.5.2",
"@types/pidusage": "2.0.1"
}
}