-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.79 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
{
"name": "rugged",
"version": "1.0.1",
"description": "Orchestrate package testing across uneven terrain",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"bin": {
"rugged": "./dist/index.js"
},
"scripts": {
"dev": "yarn install --frozen-lockfile && yarn compile && yarn --cwd ./website install --frozen-lockfile",
"test": "jest && yarn compile && node ./dist/index.js",
"lint": "eslint --ext .js,.ts,.jsx,.tsx ./ && prettier --check '**/*.{ts,js,tsx,jsx,json,css,html,yml}'",
"format": "eslint --fix --ext .js,.ts,.jsx,.tsx ./ && prettier --write '**/*.{ts,js,tsx,jsx,json,css,html,yml}'",
"clean": "git clean -X -d --force && find . -type d -empty -delete",
"precompile": "rm -rf dist/",
"compile": "tsc --project tsconfig.build.json",
"postcompile": "chmod +x dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparksuite/rugged.git"
},
"keywords": [
"orchestrator",
"orchestration",
"package",
"test",
"testing"
],
"author": "Sparksuite",
"license": "MIT",
"bugs": {
"url": "https://github.com/sparksuite/rugged/issues"
},
"homepage": "https://github.com/sparksuite/rugged",
"dependencies": {
"chalk": "^4.1.0",
"execa": "^5.0.0",
"glob": "^7.1.6",
"listr": "^0.14.3",
"tmp": "^0.2.1",
"ts-node": "^9.1.1"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.20",
"@types/listr": "^0.14.2",
"@types/node": "^14.14.25",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.6.3",
"jest-ts-webcompat-resolver": "^1.0.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"typescript": "^4.1.3"
}
}