-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.56 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
{
"name": "staticshape",
"description": "A CLI tool to convert a static site into an SSG site to be used as a baseline",
"version": "0.0.7-1",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib/**/*.js"
],
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"bin": "lib/cli.js",
"type": "module",
"dependencies": {
"@clack/prompts": "^0.7.0",
"angular-html-parser": "^4.0.1",
"fastest-levenshtein": "^1.0.16",
"js-yaml": "^4.1.0",
"jsdom": "^21.1.2",
"slugify": "^1.6.6",
"turndown": "^7.1.2"
},
"scripts": {
"publish": "npm run build && np",
"test": "c8 ava",
"build": "tsc",
"start": "tsc && node --experimental-specifier-resolution=node lib/cli.js",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' 'test/**/*.ts' 'test/**/*.json' --write"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/jsdom": "^21.1.2",
"@types/turndown": "^5.0.1",
"ava": "^5.0.0",
"c8": "^7.13.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CloudCannon/staticshape.git"
},
"author": "CloudCannon",
"license": "ISC",
"bugs": {
"url": "https://github.com/CloudCannon/staticshape/issues"
},
"homepage": "https://staticshape.app/",
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
],
"environmentVariables": {
"TS_NODE_LOG_ERROR": "true"
},
"require": [
"ts-node/register"
]
}
}