-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2 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": "apply-config",
"version": "2.1.2",
"description": "A collection of helper scripts to apply various configs to a project",
"main": "dist/helpers.js",
"types": "dist/helpers.d.ts",
"bin": {
"apply-config": "dist/index.js"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint . --ext .ts,.d.ts,.js",
"lint:fix": "eslint . --ext .ts,.d.ts,.js --fix",
"prepublishOnly": "npm run lint && npm run build && npm test",
"test": "jest --ci",
"test:watch": "jest --watch"
},
"keywords": [
"eslint",
"typescript",
"setup",
"prettier",
"config",
"github",
"travis"
],
"author": "Giles Roadnight",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^14.14.25",
"@types/promptly": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.1.3"
},
"dependencies": {
"chalk": "^4.1.0",
"detect-json-indent": "0.0.3",
"log-symbols": "^4.1.0",
"make-dir": "^3.1.0",
"message-await": "^0.1.0",
"promptly": "^3.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Roaders/apply-config.git"
},
"bugs": {
"url": "https://github.com/Roaders/apply-config/issues"
},
"homepage": "https://github.com/Roaders/apply-config#readme"
}