forked from mweststrate/build-if-changed
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.07 KB
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
{
"name": "build-if-changed",
"version": "1.5.5",
"description": "Run build scripts only when files changed",
"license": "MIT",
"main": "lib/index.js",
"bin": {
"bic": "bin/cli.js",
"build-if-changed": "bin/cli.js"
},
"files": [
"bin",
"lib",
"help.txt"
],
"scripts": {
"build": "tsc -p .",
"prepublishOnly": "yarn build"
},
"dependencies": {
"ansi-256-colors": "^1.1.0",
"has-flag": "^4.0.0",
"recrawl": "^1.1.1",
"saxon": "^0.1.15"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/node": "^12.0.4",
"husky": "^2.3.0",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.0",
"typescript": "^3.5.1"
},
"author": "Alec Larson",
"contributors": [
"Michel Weststrate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aleclarson/build-if-changed.git"
},
"homepage": "https://github.com/aleclarson/build-if-changed#readme",
"bugs": {
"url": "https://github.com/aleclarson/build-if-changed/issues"
}
}