-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
87 lines (87 loc) · 1.72 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "purposefile",
"version": "1.2.0",
"description": "Make sure every file in your repo is exactly where it should be",
"main": "dist/index.js",
"bin": {
"purposefile": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"check": "npm run -s build && ./dist/cli.js",
"format": "prettier --write '**'",
"build": "tsc && chmod +x ./dist/cli.js",
"test": "TS_NODE_PROJECT=./tsconfig.json ava",
"prepublish": "npm run -s build"
},
"keywords": [
"purpose",
"file",
"reason",
"lint",
"config"
],
"author": "Jamie Kyle <me@thejameskyle.com>",
"license": "MIT",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/find-up": "^2.1.1",
"@types/meow": "^5.0.0",
"@types/micromatch": "^3.1.0",
"@types/strip-indent": "^3.0.2",
"ava": "^1.4.1",
"husky": "^2.1.0",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"dependencies": {
"arrify": "^2.0.1",
"chalk": "^2.4.2",
"fast-glob": "^2.2.6",
"find-up": "^3.0.0",
"fixturez": "^1.1.0",
"meow": "^5.0.0",
"micromatch": "^4.0.2",
"properties": "^1.2.1",
"strip-indent": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run -s check && lint-staged"
}
},
"lint-staged": {
"*": [
"prettier --write",
"git add"
]
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamiebuilds/purposefile.git"
},
"bugs": {
"url": "https://github.com/jamiebuilds/purposefile/issues"
},
"homepage": "https://github.com/jamiebuilds/purposefile#readme",
"ava": {
"sources": [
"src/**/*.ts",
"!dist"
],
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}