-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
{
"name": "@matters/ipns-site-generator",
"version": "0.1.7",
"description": "IPNS site generator for matters.town",
"author": "https://github.com/thematters <[email protected]>",
"homepage": "https://github.com/thematters/ipns-site-generator",
"repository": {
"type": "git",
"url": "[email protected]:matters-ipns-site-generator.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc && mkdir -p dist/render/views && cp -R src/render/views/* dist/render/views",
"build:demo": "ts-node ./bin/build-demo.ts",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"test": "npm run build && jest --config jestconfig.json",
"prepare": "husky install",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [],
"license": "Apache-2.0",
"devDependencies": {
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.165",
"@types/nunjucks": "^3.2.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.2",
"jest": "^26.6.3",
"jest-environment-jsdom": "^26.6.2",
"prettier": "^2.8.0",
"ts-jest": "^26.4.4",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.3"
},
"dependencies": {
"@matters/slugify": "^0.7.3",
"@peculiar/webcrypto": "^1.1.6",
"cheerio": "^1.0.0-rc.9",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.20",
"nunjucks": "^3.2.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}