-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "doc-snippets",
"version": "1.0.0",
"description": "Extract and inject snippets from code into markdown files",
"author": {
"name": "Pileks",
"email": "[email protected]"
},
"contributors": [
{
"name": "Polywrap DAO",
"url": "https://polywrap.io/"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/polywrap/doc-snippets.git"
},
"main": "build/index.js",
"files": [
"build",
"bin"
],
"bin": {
"doc-snippets": "bin/doc-snippets"
},
"scripts": {
"build": "npx rimraf ./build && tsc --project tsconfig.build.json && yarn build:readme",
"build:readme": "ts-node ./readme/build.ts",
"clean": "npx rimraf ./build ./node_modules",
"reset": "yarn clean && yarn && yarn build",
"lint": "yarn eslint .",
"lint:fix": "yarn eslint --fix .",
"publish:npm": "yarn publish --access public --non-interactive --verbose",
"publish:pre:npm": "yarn publish --access public --non-interactive --verbose --tag pre",
"version:apply": "yarn version --new-version $(cat VERSION) --no-git-tag-version",
"test": "jest --passWithNoTests --runInBand --verbose"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.4",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^11.1.0",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"rimraf": "3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "10.7.0",
"typescript": "4.6.4"
},
"dependencies": {
"commander": "^9.4.1",
"glob": "^8.0.3"
}
}