-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "scutage",
"version": "0.0.7",
"description": "Simple, opinionated Static Site Generator from HTML",
"author": "Andrew Crites <[email protected]> (https://github.com/ajcrites/scutage)",
"license": "MIT",
"main": "lib/scutage",
"bin": "dist/index.js",
"types": "lib",
"scripts": {
"prepublishOnly": "rimraf lib dist && tsc --project tsconfig.build.json && cp src/bin.js lib && ncc build lib/bin.js -m -e html-minifier",
"test": "tsc && tslint --project tsconfig.json"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test"
}
},
"lint-staged": {
"**/*.ts": [
"prettier --write --parser typescript --single-quote --trailing-comma all",
"tslint --fix",
"git add"
]
},
"devDependencies": {
"@types/yargs": "^12.0.5",
"@zeit/ncc": "^0.9.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"ts-config-mobiquity-server": "^5.0.0",
"tslint": "^5.12.1",
"typescript": "^3.2.2"
},
"dependencies": {
"clean-css": "^4.2.1",
"globby": "^8.0.1",
"html-minifier": "^3.5.19",
"jsdom": "^11.12.0",
"mkdirp-promise": "^5.0.1",
"mz": "^2.7.0",
"rmfr": "^2.0.0",
"terser": "^3.16.1",
"yargs": "^12.0.1"
},
"files": [
"/lib",
"/dist"
],
"repository": "github:ajcrites/scutage"
}